Returns the error message that corresponds to a given error number.
ErrorToString(errornumber)
Exception type | Error number | Condition |
---|---|---|
5 | ErrorNumber is out of range. |
The ErrorToString function examines the property settings of the Err object to identify the most recent run-time error. The return value of the ErrorToString function corresponds to the Description property of the Err object. If errornumber is a valid error number but is not defined, ErrorToString returns the string, "Application-defined or object-defined error." If errornumber is not valid, an error occurs. If errornumber is omitted, the message corresponding to the most recent run-time error is returned. If no run-time error has occurred, or errornumber is 0, ErrorToString returns a zero-length string ("").
In Visual Basic version 6.0 and earlier, this functionality was provided by the Error function.
The following code uses the ErrorToString function to display error messages that correspond to the specified error numbers:
Dim ErrorNumber As Integer For ErrorNumber = 61 To 64 ' Loop through values 61 - 64. MsgBox(ErrorToString(
ErrorNumber)
) ' Display error names in message box. Next ErrorNumber
Err Object | Description Property |