using (InfoReportViewer tbreport = new InfoReportViewer(ds.Tables[0], "CaseReport.rdlc")) { tbreport.AddReportDatasource(ds.Tables[0], "DataSet"); tbreport.ShowDialog(); }
using (InfoReportViewer tbreport = new InfoReportViewer(ds.Tables[0], "CaseReport.rdlc")) { tbreport.AddReportDatasource(ds, "DataSet"); tbreport.ShowDialog(); }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)