Open Visual Basic Program from Excel
Open Visual Basic Program from Excel
(OP)
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.





RE: Open Visual Basic Program from Excel
Dim sFile As String
sFile = "H:\FixRef.exe"
Call Shell(sFile, vbNormalFocus)
DimensionalSolutions@Core.com
While I welcome e-mail messages, please post all thread activity in these forums for the benefit of all members.
RE: Open Visual Basic Program from Excel