Reply to thread

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:


Top Bottom