Microsoft Jet didn't get to find the object ' Databases'.

  • Thread starter Thread starter Frank Dulk
  • Start date Start date
F

Frank Dulk

I try to open an access gives me the following mistake:

" The motor of base of data Microsoft Jet didn't get
to find the object ' Databases'. it Verifies
if the object exists and if the name and the road of the objecto
they were introduced correctly ".

I already tried in several ways, how to compact to repair base
of data, to create a new one
base of data and to import the objects, but he/she gives always this
mistake.
 
Sorry, Mike, but that's incorrect.

Yes, there are times when you need to disambiguate the declaration by using
DAO.Recordset or ADODB.Recordset when objects with the same name exist in
more than one library. Database, however, isn't such an object.

The usual cause for this problem is that a reference hasn't been set to DAO.
With any code module open, select Tools | References from the menu bar,
scroll through the list of available references until you find the one for
Microsoft DAO 3.6 Object Library, and select it. If you're not going to be
using ADO, uncheck the reference to Microsoft ActiveX Data Objects 2.x
Library
 
Back
Top