I want to explain my problem ...So I use Cristal Report for Visual Studio 2003
I want to include report in exe file....so on buton clik event I open new form and on it I have cristal viewer and set report source ...
on some dummy application and it work but on real application I get error message
"Unable to find the report in the manifest resources"
My code is:
MyForm form=new MyForm();
CrystalDecisions.CrystalReports.Engine.ReportDocum ent report=new ReportDocument();
report=new stockStateCR();
form.CRview.ReportSource=report;
form.ShowDialog();
|