0

我有一个使用reportViewer. 我想在一个reportViewer. 这是单个报告的代码:

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”提供数据源实例

可能的错误是什么?

4

1 回答 1

2
  1. 以文本形式打开 rdlc 文件
  2. DataSet1替换为First_Year_IT_AttendanceBindingSource

检查 rdlc 中的列(字段)是否与数据源中的列“相等”

于 2013-03-16T19:39:53.857 回答