D
Dave Karmens
which is better to use?
dim wsh
set wsh = Server.CreateObject("WScript.Shell")
wsh.run "c:\build.exe", 1, True
set wsh = nothing
--or--
Dim Executor
Set Executor = Server.CreateObject("ASPExec.Execute")
Executor.Application = "c:\build.exe"
Executor.ShowWindow = True
Executor.ExecuteWinApp
Set Executor = nothing
dim wsh
set wsh = Server.CreateObject("WScript.Shell")
wsh.run "c:\build.exe", 1, True
set wsh = nothing
--or--
Dim Executor
Set Executor = Server.CreateObject("ASPExec.Execute")
Executor.Application = "c:\build.exe"
Executor.ShowWindow = True
Executor.ExecuteWinApp
Set Executor = nothing