Hello,
I made an AUTORUN.INF file:
[autorun]
OPEN=start.exe
When the program appears after it is loaded in the
CD Drive, the user has 4 choices to choose from,
4 command buttons.
The 4 programs are *.exe programs. One of them is a
setup.exe program.
I get an error "Run-time error'53': File not found.
This is the code I used to try to launch the setup.exe:
Private Sub Command1_Click()
Call Shell(App.Path + "\setup.exe", 1)
End Sub
I can't give the path of the CD Drive because it could
be any letter. I figured App.Path would do the trick.
Any help would be greatly appreciated. Thanks
I made an AUTORUN.INF file:
[autorun]
OPEN=start.exe
When the program appears after it is loaded in the
CD Drive, the user has 4 choices to choose from,
4 command buttons.
The 4 programs are *.exe programs. One of them is a
setup.exe program.
I get an error "Run-time error'53': File not found.
This is the code I used to try to launch the setup.exe:
Private Sub Command1_Click()
Call Shell(App.Path + "\setup.exe", 1)
End Sub
I can't give the path of the CD Drive because it could
be any letter. I figured App.Path would do the trick.
Any help would be greatly appreciated. Thanks