How do I run an executable from VB? Like WinExec in C++, what is the VB command?
Thank you!
Printable View
How do I run an executable from VB? Like WinExec in C++, what is the VB command?
Thank you!
simple, async running: SHELL
If you want to wait for the exe to be terminated, then CreateProcess API call to start the process, , and WaitForSingleObject to wait till it finishes.
RK