DAO.recordset and reference

  • Thread starter Thread starter joe_walker
  • Start date Start date
J

joe_walker

Guest
I'm having problems with edit method and referencing to DAO. I work in Access 2002, and have turned on MS DAO 3.6 Object library. I can find it in object browser, but it doesnt show up in form.

Thanks
 
It seems to me that you also have set ADO in the References. If this this the case, you have to add DAO as a prefix to all DAO objects. Something like this.

Dim dbs As DAO.Database
Dim rst As DAO.Recordset
...

:)
 
yes, how dumb of me.

Thanks a lot!
 

Users who are viewing this thread

Back
Top Bottom