Missing Reference

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi experts.

I have a c# widows program that uses 3rd party dlls. All works correctly on
my PC but when I try to run the exe on another PC, I get an error indicating
a missing reference. I checked the other PC and all the 3rd party the dlls
are present and registered.

Is there anything I can do to resolve this?

Thanks
J.
 
I think you are going to need to be more specific. Are the "third party
DLL's" COM Servers? If so, the fact that they are present may not be
sufficient. They need to be registered with RegSvr32.exe also.
Peter
 
Are the dll's interop dll's, calling COM objects? If so, you need to
have the COM object installed on the machine that you are running the app
on, not just the interop dlls.

You mentioned registered. What kind of registration are we talking
about?
 
This is the error I’m getting

“File or assembly name CrystalDecisions.Enterprise.InfoStore, or one of its
dependencies, was not found.â€

The CrystalDecisions.Enterprise.InfoStore.dll file is present in C:\Program
Files\Common Files\Crystal Decisions\2.0\managed and would have been
registered when the Crystal software was installed.

Thanks
 
Back
Top