Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Run Time Errors

Status
Not open for further replies.

Hayou

Programmer
Apr 22, 2003
7
0
0
US
I have a form and when I click on it. It comes up with a run time error "2105". First thing is what does this mean? Second is, does anyone know where I can get what all the codes mean and down load them?
 
Description: "You can't go to the specified record."

You have hit the last record in your record source and cannot advance any further. Use error handling to ignore or resume with the next line of code.

You can reference the err.number and err.description properties for error number and description and look them up at Microsoft.

Select Case Err.Number
Case 2105
' You can't go to the specified record.
Resume Next
Case ....
End Select
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top