missing or broken reference to the file ‘ACEDAO.DLL’ version 12.0

morsteve

New member
Local time
Today, 06:19
Joined
Nov 20, 2008
Messages
1
I have recently upgraded my system to Office 2010 64 bit. My employees are still using my database - form on Office 2003. I opened and made some minor changes to their form and now I’m getting some errors.
“Your database or project contains a missing or broken reference to the file ‘ACEDAO.DLL’ version 12.0”
Any ideas?
I corrected one error by adding,
#If VBA7 And Win64 Then
Private Declare PtrSafe Function apiGetUserName Lib "advapi32.dll" Alias _
"GetUserNameA" (ByVal lpBuffer As String, nSize As Long) As Long
#Else
Private Declare Function apiGetUserName Lib "advapi32.dll" Alias _
"GetUserNameA" (ByVal lpBuffer As String, nSize As Long) As Long
#End If
 
I am in the same situation - my computer has been upgraded to Office 2010, but I still support Access databases used by employees who are still using Office 2003.

Until all employees are upgraded to Office 2010, I make all databases changes on a computer with Office 2003 to avoid issues with references.

Please advise if there is a better solution.
 

Users who are viewing this thread

Back
Top Bottom