-
Hey people,
Im creating a little program that basically runs from a cd {autoruns when cd is loaded) and I would like the user to click on the Button to Install or Run the Program, but I cant figure out which to do and how. if anyone could direct me to the correct code, or show me.
Mainly I would like the Code coming from the button so when clicked it opens and runs the program.
ThaNKS
-
You just want to run (shell) an application?
Code:
Private Sub Command1_Click()
Shell "MYFILE.EXE", vbNormalFocus
End Sub
-
Geez
Ah.. How did I miss that...Err
Thanks :)