lb4paris
Mechanical
- May 9, 2003
- 3
I want to open a visual basic program (an executable file) from Excel. Is there anything I can do to open it using the vba editor?
thanks in advance.
thanks in advance.
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.
Dim sFile As String
sFile = "H:\FixRef.exe"
Call Shell(sFile, vbNormalFocus)