vote up 0 vote down star

I'm at a loss to explain this one:

I'm getting an error "91" (Object or With block not set) on the second line below:

Dim rs As DAO.Recordset

Set rs = CurrentDb.OpenRecordset("SELECT * FROM employees")

The following also causes it: Set rs = CurrentDb.OpenRecordset("employees")

Executing ?CurrentDb.Name alone in the immediate window causes the error as well.

Now, clearly the database is open since I'm editing the form within it, so what can cause this error here?

flag

What's between the parens for OpenRecordset? – Patrick Cuff Jan 6 '09 at 20:38
Patrick is on the right track. Can you provide the entire line of code. I think it is probably related to the OpenRecordset failing. You could also test in the command window to confirm what you think is happening is really happening ?Access.Application.currentdb is nothing – JohnFx Jan 6 '09 at 20:51
Is this code in a module, or on a form or other? Are you working with an ADP project, or plain vanilla Access database? – Patrick Cuff Jan 8 '09 at 14:45

3 Answers

vote up 3 vote down check

If you are working with an ADP project, you should use CurrentProject instead of CurrentDB.

link|flag
vote up 1 vote down

Try creating a database object and using that instead of the CurrentDb reference. For example:

Dim db As DAO.Database
Dim rs As DAO.Recordset

Set db = CurrentDb
Set rs = db.OpenRecordset("SELECT * FROM Employees")
link|flag
vote up 3 vote down

you should assign your .openRecordset method to a dao.recordset object or a generic object ('late binding' technique). try something like this:

dim rs as dao.recordset
set rs = currentDb.openRecordset(your SELECT instruction,...)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.