Normal
System.Diagnostics.Process contains all you need...[code]public static Process Start ( string fileName, string arguments)[/code]and[code]public bool HasExited { get; }[/code]or[code]public bool EnableRaisingEvents { get; set; }[/code]and[code]public StreamReader StandardOutput { get; }[/code]for example.... See MSDN help for more details. :wink:
System.Diagnostics.Process contains all you need...
[code]public static Process Start (
string fileName,
string arguments
)
[/code]
and
[code]public bool HasExited { get; }
or
[code]public bool EnableRaisingEvents { get; set; }
[code]public StreamReader StandardOutput { get; }
for example.... See MSDN help for more details. :wink: