MySQL Forums
Forum List  »  Microsoft Access

Re: Recordset error
Posted by: Larry Kinney
Date: March 02, 2006 10:22PM

I suspect your using Access 2000 or later. If so

Dim dbs As Database
Dim rstDBase As Recordset

is not correct.

It should be

Dim dbs As DAO.Database
Dim rstDBase As DAO.Recordset

Plus the "Microsoft DAO 3.6 Object Library" has to be referenced.



Edited 1 time(s). Last edit at 03/02/2006 10:23PM by Larry Kinney.

Options: ReplyQuote


Subject
Views
Written By
Posted
2488
March 31, 2005 06:45AM
Re: Recordset error
1384
March 02, 2006 10:22PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.