Crystal Reports are not working in Visual Studio 2010

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)

c#
.net
visual-studio-2010
c#-4.0
crystal-reports

4 Answers

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.

answered on Stack Overflow Jan 2, 2012 by Mujassir Nasir • edited May 6, 2019 by KyleMit
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.

answered on Stack Overflow Jan 2, 2012 by competent_tech • edited May 6, 2019 by KyleMit
0

Add this code in app config

<startup useLegacyV2RuntimeActivationPolicy="true">  </startup> 
answered on Stack Overflow Jan 2, 2012 by Mujassir Nasir
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.

answered on Stack Overflow Jul 11, 2012 by MITHILESH

User contributions licensed under CC BY-SA 3.0