1

When i execute crystal report it gives an error Could not load file or assembly 'crdb_adoplus, Version=9.1.5000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. Strong name validation failed. (Exception from HRESULT: 0x8013141A)

Mujassir Nasir
  • 1,640
  • 4
  • 31
  • 52
  • Have you seen this discussion on the CR support site: http://forums.sdn.sap.com/thread.jspa?threadID=1430708 ? It doesn't look very positive. – competent_tech Jan 02 '12 at 06:04

4 Answers4

4
  1. Place this code in your app.config

    <startup useLegacyV2RuntimeActivationPolicy="true">
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.2"/>
    </startup>
    
  2. If it would not work then download Crystal Report Runtime from this link http://downloads.businessobjects.com/akdlm/crnetruntime/clickonce/CRRuntime_32bit_13_0_1.msi

  3. If again Crystal Report create some problem then right click on your project, open Properties, open Debug tab and check option Enable Unmanaged code debugging.

KyleMit
  • 30,350
  • 66
  • 462
  • 664
Mujassir Nasir
  • 1,640
  • 4
  • 31
  • 52
3

If you are running .Net 4 in VS2010, then you may need to add the following to your .config file (configuration section):

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

If this doesn't work, then you need to upgrade to Crystal Report for VS2010 from this link.

KyleMit
  • 30,350
  • 66
  • 462
  • 664
competent_tech
  • 44,465
  • 11
  • 90
  • 113
0

If you have visual studio 2010 in your system then crystall report is not install because there is no any crystal report with visual studio 2010.for open the crystal or .rpt file install the sap crystal report 2010.It willl downloaded from sap object websit.

MITHILESH
  • 9
  • 1
0

Add this code in app config

<startup useLegacyV2RuntimeActivationPolicy="true">  </startup> 
Mujassir Nasir
  • 1,640
  • 4
  • 31
  • 52