i'm realatively new to vb and i'm trying to open an exe file with a command button, so far all i can get is one error message after the other.
can anyone help me out with how to do this?
thanks
Printable View
i'm realatively new to vb and i'm trying to open an exe file with a command button, so far all i can get is one error message after the other.
can anyone help me out with how to do this?
thanks
I'm not too clear on what are you trying to do here. If you want to run another application and know the path to it then use the shell command i.e. if you have a command button pu the following code in the click event and this will start notepad
shell "c:\windows\notepad.exe", vbNormalFocus
Thanks!!