VoiceGuide IVR Software Main Page
Jump to content

Vb Script Module

Recommended Posts

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

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×