Login | |
|
 |
RE: "can not open vbscript" bypassing? - 7/23/2008 4:40:05 AM
|
|
 |
|
| |
Rischip
Posts: 480
Score: 2
Joined: 3/26/2007
Status: offline
|
If you have access to the scripts change them not to prompt for a button press, or change the statement that uses msgbox or inputbox to use something like .Popup object.Popup (Message [, TimeOut][, Title] [, Format]) Set WshShell = CreateObject("WScript.Shell") Result = WshShell.Popup("This is a popup box!", 10, "Title", 65) This will popup but only delay up to the timeout, in this case 10 seconds.
_____________________________
Rischip Author of - The Grim Linker
|
|
| |
|
|
|
 |
RE: "can not open vbscript" bypassing? - 7/23/2008 4:56:06 AM
|
|
 |
|
| |
Rischip
Posts: 480
Score: 2
Joined: 3/26/2007
Status: offline
|
The compiler throws an error? What is the error? You will most definately need to fix the code if you have compiler errors. On Error Resume Next might work depending on the error, but should investigate why you are getting the error in the first place.
_____________________________
Rischip Author of - The Grim Linker
|
|
| |
|
|
|
|
|