Click here to Skip to main content
15,885,182 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
{"Could not load file or assembly 'file:///C:\\Program Files (x86)\\SAP BusinessObjects\\Crystal Reports for .NET Framework 4.0\\Common\\SAP BusinessObjects Enterprise XI 4.0\\win32_x86\\dotnet1\\crdb_adoplus.dll' or one of its dependencies. The system cannot find the file specified.":"file:///C:\\Program Files (x86)\\SAP BusinessObjects\\Crystal Reports for .NET Framework 4.0\\Common\\SAP BusinessObjects Enterprise XI 4.0\\win32_x86\\dotnet1\\crdb_adoplus.dll"}
Posted
Updated 5-Feb-17 18:55pm
v2
Comments
ZurdoDev 30-Nov-12 8:09am    
You need to make sure those dlls are in your bin folder or are installed into the GAC.
Pratik65 30-Nov-12 8:11am    
i have downloaded separately the crystal report and can help me more with this GAC

adding the following lines to the app.config seems to fix the problem:<br />
<br />
    <startup useLegacyV2RuntimeActivationPolicy="true"><br />
         <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/><br />
<br />
     </startup>
 
Share this answer
 
v3
adding the following lines to the app.config seems to fix the problem:




<?xml version="1.0"?>
<configuration>


<startup useLegacyV2RuntimeActivationPolicy="true">
  <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>

</startup>
</configuration>
 
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