|
-
Nov 25th, 2000, 03:31 AM
#1
Thread Starter
New Member
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
-
Nov 25th, 2000, 03:33 AM
#2
Fanatic Member
Easy.
Code:
Shell "c:\windows\notepad.exe"
-
Nov 25th, 2000, 03:34 AM
#3
Fanatic Member
Note:
If the file is in c:\windows\ (and some other dirs to), then you can also do:
Code:
Shell "notepad.exe"
-
Nov 25th, 2000, 10:36 AM
#4
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.
-
Nov 25th, 2000, 12:02 PM
#5
Fanatic Member
Originally posted by Megatron
Also, you both...
We're both the same.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|