2
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行數據。C#reportviewer顯示無數據
報表查看器中仍然沒有行和標題。
你能告訴我我做錯了什麼。
如果它停靠在別的東西里,也許這也需要刷新? – James