From: Chip on
I inherited two databases built in Access 2000 and recently installed Access
2007. Neither databases was converted. One runs fine, the other opens fully
enabled 9no content disabled message bar.) When I try to open the first form
from the I receive the error "The database doues not contain the automation
object dynaset."
I checked VBA references and they seem good (DAO 3.6 is there)
Am I missing some reference library or is it something in VBA?
I was called in to fix this problem and have not tried digging through
thousands of lines of VBA.
From: Tom van Stiphout on
On Fri, 14 May 2010 05:24:01 -0700, Chip
<Chip(a)discussions.microsoft.com> wrote:

That is a really old object from the Access 2.0 days. It has been
superseded by the Recordset object, a long time ago.
You may be able to get away with replacing Dynaset with
"DAO.Recordset".

-Tom.
Microsoft Access MVP


>I inherited two databases built in Access 2000 and recently installed Access
>2007. Neither databases was converted. One runs fine, the other opens fully
>enabled 9no content disabled message bar.) When I try to open the first form
>from the I receive the error "The database doues not contain the automation
>object dynaset."
>I checked VBA references and they seem good (DAO 3.6 is there)
>Am I missing some reference library or is it something in VBA?
>I was called in to fix this problem and have not tried digging through
>thousands of lines of VBA.