I have a Windows application written in C # and I'm trying to display a crystal report using Crystal Report Viewer. My report name is "ReceivingReport" and I use the following line to show the report in the viewer:
receiptReport rpt = new receiptReport(); crystalReportViewer.ReportSource = rpt;
I get the following error: Unable to find the report in the manifest resources. Please build the project, and try again. Unable to find the report in the manifest resources. Please build the project, and try again.
I tried installing the Build Action report file "GetReport.rpt" in the Embedded Resource, but still now luck .. Im using VS2010 ..
c # winforms crystal-reports
Waqas
source share