I\'m used to programing in C#, which obviously has some pretty robust error handling. Now I\'m working on a short project in VBScript. I\'ve read about the error handling wi
Yes, you can. Use the Err.Raise method, e.g.:
Err.Raise 5 ' Invalid procedure call or argument
For a list of VBScript's standard error codes, see Errors (VBScript).