Sunil Acharya
Sunil Acharya

Reputation: 1183

Report Failed Error in Crystal Reports version 13.0?

I have a project which has a crystal report which is been displayed on a winform. It runs perfectly on the project on Debug mood but once I create setup the crystal report area is totally not working and showing an error.

I'm using Crystal report 13 for Visual Studio 2013 After the error the system get close

Error Message

enter image description here

Upvotes: 2

Views: 2141

Answers (1)

BoeseB
BoeseB

Reputation: 725

For your Crystal Reports Viewer to work on a target machine, you need to deploy the CrystalReports runtime with your installation. For an overview what you need for which Version of CR have a look at this site: Runtime Distributionand Supported Operating Systems

For the your version if you mean CR 2010 with "version 13.0" you need one of the runtimes from this site: http://scn.sap.com/docs/DOC-7824

EDIT

The "Solution" from my last comment should just show you what you could try.

  1. Install the right runtime (see links above)
  2. If your app is compiled as 32Bit you need the 32Bit runtime even on a 64 bit system
  3. Add the runtime policy shown in the solution to your app.config
  4. If you use an obfuscator you shouldnt encrypt strings
  5. upgrade your crystal reports Libs to the latest servicepack

Upvotes: 3

Related Questions