Err numbers - new programmer question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a good reference listing Access error descriptions given the error
number?

Or... is there a good way to use the immediate window to read error
descriptions when I input an error number? (I'm trying to follow examples of
code to learn programming, but I can't always understand the error just by
knowing its number)

Thank you
 
Use the AccessError function:

?AccessError(3210)
The connection string is too long.
 
In
Becky said:
Is there a good reference listing Access error descriptions given the
error number?

Or... is there a good way to use the immediate window to read error
descriptions when I input an error number? (I'm trying to follow
examples of code to learn programming, but I can't always understand
the error just by knowing its number)

Thank you

In the Immediate window, you can invove the AccessError function and see
what it returns:

?AccessError(3265)
Item not found in this collection.

There was a function in the Access 97 help file that would create a
table of Access and Jet errors. I don't have a copy of the source code
handy, but if you google for "AccessAndJetErrors" you should be able to
find it reposted.
 

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

Similar Threads

Err; Errors; and DBEngine.Errors 2
Form_Error and Err object 6
Get procedure (sub/func) name 2
Access Error Messages 15
Error code listing available? 2
Error Codes 1
>> Handling sql errors 2
List Run-Time Errors 2

Back
Top