dao2535.tbl is missing

A

ampierce

I installed Office 2007 after having Office 2000, and when I try to open one
of my databases I get the message "dao2535.tbl is missing" I am unable to
figure out how to fix it.
 
D

Douglas J. Steele

You shouldn't need it. It was intended to be used in Access 97 to ensure
backwards compatibility with databases created in Access 95. While in the VB
Editor, look at the References and uncheck the reference to it (which will
probably have MISSING: in front of it)
 
A

ampierce

It isn't listed.

Douglas J. Steele said:
You shouldn't need it. It was intended to be used in Access 97 to ensure
backwards compatibility with databases created in Access 95. While in the VB
Editor, look at the References and uncheck the reference to it (which will
probably have MISSING: in front of it)
 
T

Tony Toews [MVP]

ampierce said:
It isn't listed.

Run the following code and cut and paste from the debug window to tell
us what references you do have.

Sub ViewReferenceDetails()

Dim ref As Reference

For Each ref In Access.References
Debug.Print ref.Name & " - " & ref.Major & "." & ref.Minor & "
- " & ref.FullPath
Next ref

End Sub
 
A

ampierce

Thanks for everyone's help. I think I can now do what I need to do with my
databases--how I got to that point, I don't know! But I need to merge Word
documents with an Access database--both created in Office 2000, and I now can
do it. I appreciate your help.
 

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

Top