Does anyone know how to, within VB call other programs??? Specifically if I could open a command prompt and execute certain instuctions, that would be optimal. Anyone know how to do this in VB???? Or something similar??
You can also use the WinExec API
Private Declare Function WinExec Lib "kernel32" Alias "WinExec" (ByVal lpCmdLine As String, ByVal nCmdShow As Long) As Long
I also found that if I wanted to add other information at the command prompt to write a bat file and call that from VB. Just a suggestion incase you wanted to do more than run an application.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.