Hello!
How would I go about running a program located at a specific location on my hard-drive upon the click of a button?
I found this code on the internet for runing notepad:
Dim objShell
objShell = CreateObject("WScript.Shell")
objShell.Run("notepad")
How would i do that if the application has a specific path?
How would I go about running a program located at a specific location on my hard-drive upon the click of a button?
I found this code on the internet for runing notepad:
Dim objShell
objShell = CreateObject("WScript.Shell")
objShell.Run("notepad")
How would i do that if the application has a specific path?