Hi,
I am trying to create a crystal report object in C# (VS 2005). I added a crystal report to my project and named it CrystalReport.rpt
I am using the namespaces
using
CrystalDecisions.Shared;
using
CrystalDecisions.CrystalReports.Engine;
using
CrystalDecisions.ReportSource;
and the statement is CrystalReport myReport = new CrystalReport();
I get the following error. I am not sure if I am missing anything. Please do let me know
Error 1 The type or namespace name 'CrystalReport' could not be found (are you missing a using directive or an assembly reference?)
Can someone help me. I appreciate the help in advance.