|
-
Jun 10th, 2001, 08:27 AM
#1
Thread Starter
Member
Launch a program in VBS
In VB, if you want to launch a program you can do:
Code:
Shell "C:\windows\app.exe"
is there an equivalent of this in VBS, or do I have to use that silly WScript.Shell thingy? I don't get it!
-
Jun 10th, 2001, 09:12 AM
#2
Thread Starter
Member
Boo hoo
Please can somebody help me - this is really bugging me! Cheers,
phAstA
-
Jun 10th, 2001, 09:17 AM
#3
Hyperactive Member
In vbs, this is the equivalent:
Code:
Dim WshShell
Set WshShell = WScript.CreateObject("WScript.Shell")
Return = WshShell.Run("notepad.exe", 1)
-
Jun 10th, 2001, 09:22 AM
#4
Thread Starter
Member
PERFECT!!! That is superb! Thank you!
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
|