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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top