Guest fsoudbakhsh Report post Posted 10/26/2005 07:15 PM Hello, The VB script open an error windows when caller enter a wrong number. I understand I have to write vb code to response properly, but How can I stop these error window to opened? I do have on {success} goto [CheckCodeNum] on {fail} goto [CheckCodeNum] in my VB scrip module path. but still VB script module opens an error window. The error windows stop my VG to process next module. Please see the picture of error window attached. Thanks Share this post Link to post
SupportTeam Report post Posted 10/26/2005 09:59 PM Have a look at using this VBScript statement: On Error Resume Next and also at the Err object. the "On Error Resume Next" should stop the error window from appearing... but in principle you should strive towards getting the VBScript fixed, not suppressing error reporting... Share this post Link to post