Hello
I work with Crystal XI and use as Datasource ADO.NET (xml)
When I use a dynamic Parameter und Fill that with a Field from the DataSet then i become a Login-Dialog when I want show the report.
It is possible to use DataSets and Dynamic Parameters ?
DSOrders ds = new DSOrders();
ds = SessionManager.Instance.IOrders.GetOrders();
ReportDocument objReport = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
objReport.Load(@"c:\xxx.rpt");
objReport.SetDataSource(ds);
crystalReportViewer1.ReportSource = objReport;
this.crystalReportViewer1.Show();
I work with Crystal XI and use as Datasource ADO.NET (xml)
When I use a dynamic Parameter und Fill that with a Field from the DataSet then i become a Login-Dialog when I want show the report.
It is possible to use DataSets and Dynamic Parameters ?
DSOrders ds = new DSOrders();
ds = SessionManager.Instance.IOrders.GetOrders();
ReportDocument objReport = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
objReport.Load(@"c:\xxx.rpt");
objReport.SetDataSource(ds);
crystalReportViewer1.ReportSource = objReport;
this.crystalReportViewer1.Show();