run external program

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

Guest

hi

how do i run a external program in a vb.net

e.g c:\Instrument_Controller\ bin\ Instrument_Controller.exe
 
Hi Newbie,

It can much shorter however to show you some things from it.

\\\Notepad
Dim p As New Process
Dim pi As New ProcessStartInfo
pi.arguments = "c:\windows\win.ini"
pi.FileName = "notepad.exe"
p.startinfo = pi
p.Start()
\\\

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