Err
Contains information about running errors. Accept errors used to generate and clear runtime errorsRaiseAndClearMethod.
Description
ErrAn object is an inherent object with a global scope: you do not haveCodeExample of creating it.ErrProperty is set by an error-generator: Visual Basic, automatic object, or VBScriptProgram.
ErrThe default attribute of the object isNumber.Err. NumberContains an integer that can be used by the Automation Object to return scode.
When a running error occurs,ErrThe attribute is filled by the unique information of the identifier error and the information that can be used to process it. To generate runtime errors in the code, useRaiseMethod.
ErrThe object property is reset to a zero or zero-length string ("").ClearMethods can be explicitly reset.Err.
The following example showsErrObject usage:
On Error resume nextErr. Raise6'Overflow error.Msgbox ("Error #" & CSTR (Err. Number)&""&Err. Description)Err. Clear'Clear the error.