Error Opening Database

  • Thread starter Thread starter Joe Williams
  • Start date Start date
J

Joe Williams

One of my users gets the following error when trying to open an access 2002
database:

"the Microsoft Jet Database could not find the object 'databases' Make sure
the object exists and that you spell its name and path correctly"

I have searched the code and found two references to an object called
database. The first reference is in the module where the following statement
is located:

Option Compare Database
Option Explicit

The second reference is on a form that populates a list box with all of the
reports in the system. The statement here is as follows:

Dim dbs As Database, ctr As Container, doc As Document
Dim strTemp As String

Set dbs = CurrentDb
Set ctr = dbs.Containers!Reports

I have 50 other users that use this database with no problem, Any idea on
why this error appears for this user and how to correct?

Thanks

- joe
 
One of my users gets the following error when trying to open an access 2002
database:

"the Microsoft Jet Database could not find the object 'databases' Make sure
the object exists and that you spell its name and path correctly"

Your database is apparently corrupted. See
http://www.granite.ab.ca/access/corruptmdbs.htm for some possible
causes and repair suggestions.
 

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

Back
Top