ADO » Errors » Item

The Item property is used to return a specific member of the Errors Collection.

The Index parameter is the position (ordinal) number.

Examples

Code:
MyError = objConnection.Errors.Item(5)
'Or:
MyError = objConnection.Errors(5)