Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

err.number values 2

Status
Not open for further replies.

OhioSteve

MIS
Mar 12, 2002
1,352
US
I have an error handling question.

I have learned that the err.number property contains the error number, and err.description contains the description. For example, I know that if err.number=70 then err.description="Permission Denied". However, I CANNOT find a list of every error number and its description. Does anyone have that list?

PS: I know that one could add to the default list. My concern is with the standard vba values, not custom values.
 
Take a look at


=======================================
People think it must be fun to be a super genius, but they don't realize how hard it is to put up with all the idiots in the world. (Calvin from Calvin And Hobbs)

Robert L. Johnson III
CCNA, CCDA, MCSA, CNA, Net+, A+, CHDP
VB/Access Programmer
 
I created an mdb and attempted to execute AccessAndJetErrorsTable. Unfortunately, Access did not understand "ADOX". Perhaps I need to import something prior to running the function.
 
You must reference the Microsoft ADO Ext 2.? for DDL and Security library.

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
You both get stars!

Someone may read this in the future. For their benefit, I will explain further. The procedure for adding the libraries (in Acc 2003) is:

1. Uncheck "Microsoft ActiveX Data Objects 2.5 Library.
2. Check "Microsoft ActiveX Data Objects 2.8 Library".
3. Check "Microsoft ADO extension 2.8 for DDL and Security".
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top