MS Access Reserved Error (-7776)

K

kevin.scott

I have a user that is receiving an Access Reserved Error
(-7776. Any input you can give me on this would be
greatly appreciated.
 
T

Tony Toews

I have a user that is receiving an Access Reserved Error
(-7776.

A groups.google.com search indicates that a few people have had this
error but certainly not many.

Is the user accessing an Oracle or other ODBC data source? If so try
uninstalling and re-installing the appropriate drivers.

Try CurrentDB("<table name>").RefreshLink on the table in question.

The following code in your VBA, if any, error handling might bring
some additional errors up.

Dim errX As DAO.Error

If Errors.Count > 1 Then
For Each errX In DAO.Errors
MsgBox "ODBC Error: " & errX.Number & ", " & errX.Description
Next errX
Else
MsgBox Err.Number & ", " & Err.Description
End If

Please post back if any of these suggestions do or don't help.

Thanks, Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
 

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