Click here to Skip to main content
15,885,141 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am currently working on c# project using SharpDevelop version 4.4.2.
I've downloaded Crystal Report trial version 2013 from SAP and create a blank report.
I've downloaded also the CrystalDecisions.CrystalReports.Engine.DLL and add it as reference in SharpDevelop.

When I run my application I got this error. What this error really mean?

System.IO.FileNotFoundException: Could not load file or assembly 'CrystalDecisions.Shared, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified.

This is my code;

using CrystalDecisions.CrystalReports.Engine;
....
void Button1Click(object sender, EventArgs e)
{
ReportDocument rptDoc = new ReportDocument();
rptDoc.Load(@"C:\rpt1.rpt");
}
Posted

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