2 Feb 2011: I started this thread under the impression that my M$ technet thread about it was dead. But there is a new post about the subject, please have a look at it: http://social.technet.microsoft.com/Forums/en-US/officeitpro/thread/56e098b9-210b-4afe-8531-c526fb3e44641. Not a solution, but a confirmation that the combination of 7, 14 and mde is crucial.
--Original Post:
Since we still have clients using Office 9 (2000), we deploy our frontend in an .mde file format (database format of Access 2000) for all Access versions 9 to 14 (2010) rather than "compiling" an .mde for older and an .accde for newer Access versions. Due to their economic situation, we often find a mixture of all Office and Windows versions on our clients' workstations in one company, so the least possibility is our answer. This was no problem with an .mde until Office 14 in combination with Windows 7. I analyzed everything enough to be sure now that there is a reproducible issue with an .mde starting up in Access 14 in combination with Windows 7 -- Access 14 on XP will work.
We have some references in our VBA project, among them Word and DAO. The Word ref. works on every Access version 9 to 14 without a problem, it will automatically find the appropriate version since the guid is the same from Office 9 to 14. Between Office 12 (2007) and 14 (2010) M$ changed not only the dll file name for DAO but, what's crucial in my understanding, the reference GUID. Have Access detect the new DAO version will fail under Access 14 under Windows 7, but only with an .mde, an .mdb, an .accdb and an .accde will start up without a problem, and an .mde will start up in Access 14 under XP, as mentioned. So this is a combination of the changed GUID and a system right to ... do what? Find a file, scan the registry for the information necessary here?
I assume there will not be a one or two step "trick" for this, but I would be grateful for hints what to check in Windows 7, or even, how to change our VBA code to get rid of this problem. Regarding the last option: We have many, many explicit Dim ... As DAO.... throughout our code.