Heyas.. another question
Let's just say I wanted to click a command button.. & it would run c:\windows\notepad.exe
how would I do that?
Thanks
Printable View
Heyas.. another question
Let's just say I wanted to click a command button.. & it would run c:\windows\notepad.exe
how would I do that?
Thanks
Easy.:)
Code:Shell "c:\windows\notepad.exe"
Note:
If the file is in c:\windows\ (and some other dirs to), then you can also do:
Code:Shell "notepad.exe"
Better, yet, you can omit the .EXE and just use "Notepad".
Also, you both are forgetting the last argument. If you omit it, then the App will minimized instead of normal.
Code:Shell "Notepad", 1
We're both the same.:rolleyes:Quote:
Originally posted by Megatron
Also, you both...