Error Numbers

O

owilson

Hi,

Is there a catalogue of what each error number means?
If not, how can I find out what is the underlying cause
of each number?

TIA

Owen
 
W

Wayne Morgan

In the immediate window type

?AccessError(ErrorNumber)

replace ErrorNumber with the number of the error you want information on.
The significant error numbers are between 0 and 3500. You could use a loop
of these numbers to create a table. You would want to skip over the ones
that return "Application-defined or object-defined error".
 
Top