
Calling one VB Script from another VB Script
Option Explicit
Dim oShell
Set oShell = CreateObject("Wscript.Shell")
oShell.run "C:\MyTest.vbs", 1, TRUE
Branimir
How do I call one VB from another VB Script and have the first VB Script wait until the second is finished before proceeding? Thanks in advance.
Paul