1.

How to throw an error in VBScript?

Answer»

Use Err.Raise to throw an error.

Example −

Err.Raise 6   ' Raise an overflow error.


Discussion

No Comment Found