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")
 
Back
Top