DAO360.DLL - Access 2007

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there any advantage for using "Microsoft Office 12.0 Access
Database Engine Object Library" instead of DAO360.DLL for Access 2007 ?
 
When you create/open an ACCDB, Access 2007 uses the ACEDAO.DLL library which
supports the functionality you need for ACCDB. In code, VBA recognises this
as the DAO library.

When you create/open an MDB in Access 2007, it uses the DAO360.dll library
which supports the functionality appropriate for MDB. In code, VBA
recognises this as the DAO library.

You can verify this by opening the Immediate Window (Ctrl+G) and entering:
? References("DAO").FullPath

It doesn't make sense to try to use DAO360.dll for an ACCDB, since you would
run into trouble with the new things like complex data types listed at the
end of this article:
http://allenbrowne.com/func-06.html
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top