tags:

views:

7

answers:

1

Hi I have VB script that run second VB script The second VB script ask some questions from the input box My problem is that “MyShell.Run” not wait until SecondVBscript.vbs will ended And the Other VB syntax run immodestly also

Need to wait for MyShell.Run process ended and then perform the Other VB syntax How can I do that?

Set MyShell = Wscript.CreateObject("WScript.Shell") 

MyShell.Run " C:\Program Files\SecondVBscript.vbs" 

Set MyShell = Nothing

Other VB syntax

A: 

Use Exec.

taspeotis