Unable to open an Access database when using Office 2007

A

Anders

Hi!

I have a small Access database created in Office 2003 that won't open in
Office 2007 when using Vista Ultimate 64 as OS. It says something about a
broken reference called RMOC3260.dll. However when using Office 2003 and XP
it opens up without any difficulty. Somebody who has had a similar problem?
Could it have something to do with the advanced security in Vista, or/and
Office 2007 using xml?
 
N

Norman Yuan

This not directly related to Win Vista or WinXP, or Office2003/2007. If you
did a google search for "rmoc3260.dll:, you would have know this dll file is
used as RealPlayer's component that can be used in an application to play
sound/music. It does not come with any Windows OS automatically, nor with MS
Office200x. You need to install it your self. I suppose if you install
RealPlayer to your Vista, you will also very likely get that DLL installed
(not 100% sure, though), or you can always downloaded from the net and
install it (at your own risk, as is there or not).

Does your Access application does the sound thing?
 
T

Tony Toews [MVP]

Anders said:
I have a small Access database created in Office 2003 that won't open in
Office 2007 when using Vista Ultimate 64 as OS. It says something about a
broken reference called RMOC3260.dll. However when using Office 2003 and XP
it opens up without any difficulty. Somebody who has had a similar problem?
Could it have something to do with the advanced security in Vista, or/and
Office 2007 using xml?

Chances are very good you don't need that reference.

Do you have any references besides the basic three? Are you sure you
need them? Write down the path and name of the extra ones (or put the
following code in a module and execute the code), delete from the
references list and Compile and Save All. Keep any necessary
references and ensure they are distributed to the target system.

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

For a very detailed page on reference problems see
http://www.accessmvp.com/djsteele/AccessReferenceErrors.html

Ctrl+G will take you into the Debug/Immediate window. Then click on
Tools on the menu bar and References.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Tony's Microsoft Access Blog - http://msmvps.com/blogs/access/
 
A

Anders

Hi Norman!

I installed Real Player byt it didn't do any good. I got another error
message this time complaining on a broken reference on something that is
called LMTR.dll version 1.0. When I used XP I didn't have Real Player
installed!!

Best wishes

Anders
 

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