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
 
Back
Top