Launching EXE from VB.Net application

  • Thread starter Thread starter John Smith
  • Start date Start date
J

John Smith

what are all the available technique in VB.Net to launch an executable file
?
Thanks,
John
 
John

Make a call to

System.Diagnostics.Process.Start("Your.exe"

Regards, Synthanato

----- John Smith wrote: ----

what are all the available technique in VB.Net to launch an executable fil

Thanks
Joh
 
* "John Smith said:
what are all the available technique in VB.Net to launch an executable file

\\\
Shell("C:\bla.exe")
///

- or -

\\\
Imports System.Diagnostics
..
..
..
Process.Start("C:\Bla.exe")
///
 
Back
Top