walter01
8th September 2009, 10:18
Hi,
I'm using the below code to execute a VBS script on the client. It works fine but I need to find a way to prevent the DOS box (black screen) from flashing on and off. Any ideas ?
app_id = app_start(
"cscript c:\temp\ql560bc.vbs //B //nologo",
"",
"c:\temp\ql560bc.I",
"c:\temp\ql560bc.O",
"c:\temp\ql560bc.E"
)
or
app_id = app_start(
"cmd /q /c cscript c:\temp\ql560bc.vbs //B //nologo",
"",
"c:\temp\ql560bc.I",
"c:\temp\ql560bc.O",
"c:\temp\ql560bc.E"
)
Walter
I'm using the below code to execute a VBS script on the client. It works fine but I need to find a way to prevent the DOS box (black screen) from flashing on and off. Any ideas ?
app_id = app_start(
"cscript c:\temp\ql560bc.vbs //B //nologo",
"",
"c:\temp\ql560bc.I",
"c:\temp\ql560bc.O",
"c:\temp\ql560bc.E"
)
or
app_id = app_start(
"cmd /q /c cscript c:\temp\ql560bc.vbs //B //nologo",
"",
"c:\temp\ql560bc.I",
"c:\temp\ql560bc.O",
"c:\temp\ql560bc.E"
)
Walter