Description Property

Description Property,FirstIndex Property,Global Property,HelpContext Property,HelpFile Property,IgnoreCase Property,Length Property,Number Property,Pattern Property,Source Property,Value Property Home home | Other Resources other resources | Advertise with us advertise | Link to us link to us | Contact us contact | Bookmark Us!
Google
 
Where can I find good Windows Web Hosting to host my VBScript Site?
You can find good Windows Hosting which support VBScript, ASP, ASP.Net,VisualStudio.Net and MSSQL at a very reasonable low monthly fee at EasyCGI.com and DiscountASP.Net

Description Property

Returns or sets a descriptive string associated with an error.

object.Description [= stringexpression]

Arguments

object

Always the Err object.

stringexpression

A string expression containing a description of the error.

Remarks

The Description property consists of a short description of the error. Use this property to alert the user to an error that you can't or don't want to handle. When generating a user-defined error, assign a short description of your error to this property. If Description isn't filled in, and the value of Number corresponds to a VBScript run-time error, the descriptive string associated with the error is returned.

On Error Resume Next
Err.Raise 6   ' Raise an overflow error.
MsgBox ("Error # " & CStr(Err.Number) & " " & Err.Description)
Err.Clear   ' Clear the error.
					

VBScriptOnline.com - Description Property,FirstIndex Property,Global Property,HelpContext Property,HelpFile Property,IgnoreCase Property,Length Property,Number Property,Pattern Property,Source Property,Value Property