Dynaset Automation Object

  • Thread starter Thread starter Chip
  • Start date Start date
C

Chip

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.
 
On Fri, 14 May 2010 05:24:01 -0700, Chip

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
 
Back
Top