'Cannot Find Specified Record' Can this message be changed?

R

Richard Horne

Simple question really, when a user scrolls through a set of records and goes
past or before the last and first record, they get the error message "Cannot
find specified record" Can this message be changed to something a bit more
user friendly? Mainly can I choose my own message? Or disable this message
altogether.
 
K

Klatuu

You would need to do that in your error handling routine. Find out what the
error number is then trap for it.

MySub_Errors:

If Err = 12345 Then
MsgBox "You Screwed UP!"
Else
Handle other errors
End If
 
Top