launch an external executable

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

Guest

in VB6.0, it is easy to launch an external executable by shell command.

How to do it in C# and VB.NET?

Thanks

Keith
 
Use the System.Diagnostics.Process class, e.g.
System.Diagnostics.Process.Start("myApp.exe")
 

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