Properties: VBScript Err Object
Properties
|
Description
|
Description Property
|
The descriptive string related with an error.
|
HelpContext Property
|
A context ID for a topic within a Windows help file.
|
HelpFile Property
|
A wholly qualified path to a Windows help file.
|
Number Property
|
A numeric value recognizing an error.
|
Source Property
|
The name of the object or application which originally generated the error.
|
Description Property
Returns or sets a descriptive string related with an error. The Description property contains a short description of the error. Employ this property to alert the user to an error which you cannot or do not desire to handle. While generating a user-defined error, assign short description of your error to this property. If Description is not filled in, and the value of the VBScript Err Object Number Property corresponds to VBScript run-time error, the descriptive string related with the error is returned.
Syntax Err.Description [= stringexpression]
Argument: Stringexpression A string expression having a description of the error.