Erros list

R

Rodolfo Fontes

Hi group,

Is there any list of the errors's number on access?
If so, where can i get that?

What mean "execution time error 3049"?

Thanks,
Rodolfo Fontes
 
D

Douglas J. Steele

If you go to the Immediate Window (Ctrl-G), you can type

?AccessError(3049)

and it will return the description, albeit a little cryptic at times, since
it'll show placeholders that get replaced with actual words if you display
the error description in your error handler.

The above returned "Can't open database '|'. It may not be a database that
your application recognizes, or the file may be corrupt.". '|' would be
replaced by the name of the file in actual usage.
 
Top