Launching an executable

  • Thread starter Thread starter Guest
  • Start date Start date
Use the Shell function, e.g.:
Call Shell("C:\MyFolder\MyApp.exe")

Or use FollowHyperlink if you just want to use whatever program is
registered for the file type, e.g.:
Application.FollowHyperlink "C:\MyFolder\MyFile.jpg"
 
Back
Top