How can I start an external program (exe file) and how can a stop the running program i just started ?
Printable View
How can I start an external program (exe file) and how can a stop the running program i just started ?
VB Code:
Dim prc As Process 'to start prc = New Process().Start("Notepad.exe") 'to stop prc.Kill()