Discussion:
what is missin or broken reference msowcw.dll 2.1
(too old to reply)
dee
15 years ago
Permalink
I have converted from 2003 to 2007. I am not able to open the databse even if
i change the extension. What does this mean
Tony Toews [MVP]
15 years ago
Permalink
Post by dee
I have converted from 2003 to 2007. I am not able to open the databse even if
i change the extension. What does this mean
Try holding down the shift key when you start the database.

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

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


Sub ViewMoreReferenceDetails()

Dim refIDE As Object

For Each refIDE In
Access.Application.VBE.ActiveVBProject.References
Debug.Print refIDE.Description & " " & _
IIf(refIDE.IsBroken, "Broken", "") & vbCrLf & _
" " & refIDE.name & " - " & refIDE.Major & "." & _
refIDE.Minor & " " & refIDE.FullPath
Next refIDE

End Sub

For a very detailed page on reference problems see
http://www.accessmvp.com/djsteele/AccessReferenceErrors.html
--
Tony Toews, Microsoft Access MVP
Tony's Main MS Access pages - http://www.granite.ab.ca/accsmstr.htm
Tony's Microsoft Access Blog - http://msmvps.com/blogs/access/
For a convenient utility to keep your users FEs and other files
updated see http://www.autofeupdater.com/
Granite Fleet Manager http://www.granitefleet.com/
Loading...