10-22-2009, 03:42 PM
try using wscript object as suggested in mentioned thread, put waitonreturn parameter as true to wait QTP until vbs executes
try this
try this
Code:
Dim oShell
Set oShell = CreateObject("Wscript.Shell")
oShell.run "C:\Dashboard.vbs", , True
msgbox "Done"