NTesla1886
Technical User
I am writing a VB 2008 Console Application that I need to have execute another exe application.
What is the easiest way to do this?
What is the easiest way to do this?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim ProgramProcess As Process
ProgramProcess = Process.Start("Notepad.exe")
ProgramProcess.WaitForExit()