private void SetReportSource()
{
DataTable dt;
dt = FrmSummaryController.GetSummaryReport();
this.rptMySummary.Reset();
this.rptMySummary.LocalReport.ReportPath = "Report.rdlc";
ReportDataSource rds = new ReportDataSource("dsNewDataSet_Table", dt);
//this.rptMySummary.LocalReport.DataSources.Clear();
this.rptMySummary.LocalReport.DataSources.Add(rds);
this.rptMySummary.LocalReport.Refresh();
}
这是我填充报表查看器的代码。我确信数据表 dt 中有 6 行数据。
报表查看器中仍然没有行和标题。
你能告诉我我做错了什么吗?