Error Codes

  • Thread starter Thread starter JK
  • Start date Start date
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
 
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"
 
Back
Top