In VB, if you want to launch a program you can do:
is there an equivalent of this in VBS, or do I have to use that silly WScript.Shell thingy? I don't get it!Code:Shell "C:\windows\app.exe"
Printable View
In VB, if you want to launch a program you can do:
is there an equivalent of this in VBS, or do I have to use that silly WScript.Shell thingy? I don't get it!Code:Shell "C:\windows\app.exe"
Please can somebody help me - this is really bugging me! Cheers,
phAstA
In vbs, this is the equivalent:
Code:Dim WshShell
Set WshShell = WScript.CreateObject("WScript.Shell")
Return = WshShell.Run("notepad.exe", 1)
PERFECT!!! That is superb! Thank you!