我有一个使用reportViewer
的C#应用程序。我想在一个reportViewer
中添加3个报告。以下是单个报告的代码:
ReportDataSource rds = new ReportDataSource();
this.reportViewer1.LocalReport.DataSources.Clear();
if (comboBoxReports.SelectedIndex == 0)
{
reportViewer1.Reset();
reportViewer1.LocalReport.ReportPath = "D:\\AMOS\\WindowsFormsApplication1\\WindowsFormsApplication1\\Report2.rdlc";
rds.Name = "First_Year_IT_AttendanceBindingSource";
rds.Value = this.First_Year_IT_AttendanceBindingSource;
reportViewer1.LocalReport.DataSources.Add(rds);
this.reportViewer1.RefreshReport();
}
然而,当我运行我的应用程序时,我收到以下错误
尚未为数据源提供数据源实例' DataSet1'
可能出现的错误是什么?
答案 0 :(得分:2)
检查rdlc中的列(字段)是否与数据源中的列“相等”