Click here to Skip to main content
15,899,679 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Could not load file or assembly ;
CrystalDecisions.Enterprise.Framework, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304 ; or one of its dependencies.
The system cannot find the file specified.


Could not load file or assembly
CrystalDecisions.Enterprise.InfoStore, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304
Posted
Updated 4-Jun-18 17:52pm
v2
Comments
[no name] 6-Oct-14 11:11am    
"The system cannot find the file specified", is fairly self descriptive is it not? Which part is it that you do not understand?
Niket Patil 6-Oct-14 11:58am    
CrystalDecisions.Enterprise.Framework this assembly or load file is not available in my windows global assembly folder so how to resolve this problem
[no name] 6-Oct-14 16:35pm    
If it's not found, don't you think it would make sense to install the Crystal Reports software so that your application can find it?

1 solution

Your solution contains a reference to the above named assembly, but the assembly has not been found at the specified location. Check that your assembly reference points to an assembly that actually exists.

If you are loading the assembly from the GAC (Global Assembly Cache) then you may need to re-install the SDK that you used to install the assembly. If that fails, then you may need to install it in the GAC yourself manually.
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 6-Oct-14 13:22pm    
In this case, this is not about location (which is not specified), so you cannot say "not been found at the specified location", but, right, about GAC. The location is found by CLR from the GAC data (not from the set of assemblies themselves) by strong name.

First guess would be: the library is not installed on the target computer. Your advice is correct.

—SA
Niket Patil 26-Jun-15 4:37am    
Yap its work properly Thank You alot

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900