SWilliams15
Programmer
How do you run an exe program or launch a .BAT file from within your VB6 program?
Thanks,
Sean
Thanks,
Sean
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.
Private Sub cmdExplore_Click()
Dim myApp
myApp = Shell("c:\windows\explorer.exe", 1)
End Sub