Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

3633 - Cannot Load DLL: '?????L?'

Status
Not open for further replies.

TJLMO

MIS
Feb 12, 2002
15
US
I need to include various dll, olb, and tlb files with a VBA application I have created for Business Objects. This works fine on my PC because the files are already there. When I move it to a user's PC, however, and I attempt to run the function CreateWorkspace from the DAO360.dll library, I receive the error in the subject heading. I have included the application extensions with the application, but still run across this error.

I check to make sure the references are there using:

For Each lref_Ref In Application.VBE.ActiveVBProject.References
If lref_Ref.IsBroken Then
ls_RefPath = CStr(lref_Ref.FullPath)
Application.VBE.ActiveVBProject.References.AddFromFile (ls_RefPath)
End If
Next

but this does not help with the problem.

Any ideas?

Thanks.
-TJLMO
 
Call me a beginner, but what is an alpha machine?
 
I loaded MDAC 2.5 to the user's machine and this did not solve the problem. Any other ideas? Thanks.
 
I see that this thread pretty much died on October 9th, but nobody seemed to really answer the question. The problem that you are getting is related to the msrdo20.dll. It IS NOT part of the MDAC or JET installations. Please refer to MS Knowledgebase article:


I pulled my hair out for 2 days because I searched the knowledgebase with "Cannot Load DLL" instead of "Can't Load DLL" - finally after searching through a filemon (from sysinternals.com) log, I found the difference in the working and non-working machines was this one simple file. Hope this helps someone out there - wish I had found it earlier.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top