Forum Discussion
DevChaminda
14 years agoOccasional Contributor
I slove the issue following is the VB scripts sample , this open the test application which on given file location.
Sub OpenTestApplication
Dim WshShell, WshShellExec
' Open test application
Set WshShell = Sys.OleObject("WScript.Shell")
Set WshShellExec = WshShell.Exec("C:\MyApp\bin\TestApp.exe")
End Sub
Sub OpenTestApplication
Dim WshShell, WshShellExec
' Open test application
Set WshShell = Sys.OleObject("WScript.Shell")
Set WshShellExec = WshShell.Exec("C:\MyApp\bin\TestApp.exe")
End Sub