running another program...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi:

I can't remember now... how can I run an external program from my app ???

Thanx in advantage
 
Something like this
\\\
System.Diagnostics.Process p =
new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo pi =
new System.Diagnostics.ProcessStartInfo();
pi.FileName = "http://www.google.com";
p.StartInfo = pi;
p.Start();
///

It can much shorter however to give you a more complete idee

I hope this helps,

Cor
 
Back
Top