Click here to Skip to main content
15,879,326 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi
Error:
Could not load file or assembly 'CrystalDecisions.CrystalReports.Engine, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified


How to solve the above problem


kindly help me to solve this

Regards

Sheethal
Posted
Comments
pradiprenushe 27-Aug-12 2:42am    
Required dll is not present in your bin folder. May be you have delete it by mistake / change it to upgraded dll. Is it the case?
Swinkaran 27-Aug-12 2:44am    
In which version are you developing the application?
D-Kishore 27-Aug-12 3:01am    
Please update the DLL
pramod.hegde 27-Aug-12 3:03am    
You need to refer CrystalDecisions.CrystalReports.Engine dll in your project.
Also, check for the right version Version=13.0.2000.0.
The error might be because of missing dll or improper version. Please check & fix these.

can you Install Crystalreport Redistriduation page form Microsoft Web site
after installing package. it work

Vijay
 
Share this answer
 
From the error message you posted here I found that your web.config files has the following declaration,
XML
CrystalDecisions.CrystalReports.Engine, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304'


Open the bin folder, and check the CrystalReport.dll
1) If there is no such file, you then need to download the CrystalReport.dll and install.
2) If the file already exists in bin file, read further.

You first need to make sure your dlls in the bin directory is updated to the latest version and compatible with the .Net version you are using now.

That is check the dll version and the assembly version defined inside your config file(web.config or machine.config). they both should be the same version.(File version and Assembly version, these two different terms). Well, Your error shows that your application is set to use the CrystalReport Version=13.0.2000.0. So, please make sure the dll file inside the bin file is same version as this assembly version.

Otherwise, you can change the defined assembly to match your dll file in the bin file.

I had the same issue and sorted out this way. Please try above and let me know, if you still get the error
 
Share this answer
 

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