G
Guest
Here's a sample of my code for the web form that will display the report:
public class myClass: System.Web.UI.Page
{
protected CrystalDecisions.Web.CrystalReportViewer CrystalReportViewer1;
private void Page_Load(object sender, System.EventArgs e)
{
myDataSet mds = new myDataSet();
myClass mc = new myClass();
... code to fill DataSet here ...
// mc.SetDataSource(mds);
// CrystalReportViewer1.ReportSource = mc;
}
}
The last two lines are commented out because SetDataSource() and
ReportSource is not recognized or available through IntelliSense.
Why would this be the case? Are they specific to VS.NET 2005 and 2003 uses
something different?
public class myClass: System.Web.UI.Page
{
protected CrystalDecisions.Web.CrystalReportViewer CrystalReportViewer1;
private void Page_Load(object sender, System.EventArgs e)
{
myDataSet mds = new myDataSet();
myClass mc = new myClass();
... code to fill DataSet here ...
// mc.SetDataSource(mds);
// CrystalReportViewer1.ReportSource = mc;
}
}
The last two lines are commented out because SetDataSource() and
ReportSource is not recognized or available through IntelliSense.
Why would this be the case? Are they specific to VS.NET 2005 and 2003 uses
something different?