Error Codes

J

JK

Does anyone know where I could download a current list of VBA Error Codes? I
want to create a table with the error code and error description but I can't
seem to find an updated list. I'm using Access 2003 - WinXP.

Thx!
JK
 
K

Klatuu

You don't really need such a table. There are a couple of ways you can get
the information from Access.

First, the following will return the error description:

=AccessError(5)

If you are in an error handler routine and want to display the error
description, you can use something like:

MsgBox Err.Number & " " & Err.Description & " Has Occurred"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top