I have a number of DBs that check to see if the database is an AccDb / Mdb or Accde / Mde
A function uses
to return the value. This has worked for years and years.
Suddenly I am getting an error that the property is not found.
AFIK it used to be in the DAO 3.6 library but is now in the Microsoft Office 14.0 Access Database engine object library. I have a reference to the latter, but if I try to add DAO 3.6, I get a Name conflicts with existing project or library.
Have MS in their wisdom, recently changed th Office 14.0 Access Database engine object library?
Has anyone else had this problem?
Interestingly, I have a AccDe version of a database that has never been touched, and that works OK
Phil
A function uses
Code:
CurrentDb.Properties("MDE")
Suddenly I am getting an error that the property is not found.
AFIK it used to be in the DAO 3.6 library but is now in the Microsoft Office 14.0 Access Database engine object library. I have a reference to the latter, but if I try to add DAO 3.6, I get a Name conflicts with existing project or library.
Have MS in their wisdom, recently changed th Office 14.0 Access Database engine object library?
Has anyone else had this problem?
Interestingly, I have a AccDe version of a database that has never been touched, and that works OK
Phil
Comment