好的,我的方案是我在表单上有一个报表查看器,它根据选择连接多个报表。我将所有报告设置为构建操作的嵌入式资源。
在设置参数之前,我正在加载这样的报告。
myReportViewer.LocalReport.ReportEmbeddedResource = "MyApp.MyReport1.rdlc";
OR
myReportViewer.LocalReport.ReportEmbeddedResource = "MyApp.MyReport2.rdlc";
这种情况很奇怪。假设我运行应用程序并首先选择MyReport1并运行它。该报告是保存参数的报告。 MyReport2没有任何参数,只有数据源。 MyReport1将正确加载,一切运行完美。然后,我可以切换到MyReport2,并根据需要在两个报告之间来回切换。
假设我先运行MyReport2。它正确加载,我可以多次运行它。但是,如果我切换回MyReport1,它会在尝试设置参数时抛出以下异常。
An attempt was made to set a report parameter 'TotalTime' that is not defined in this report.
看看这个异常,我会假设MyReport1由于某种原因没有加载。当我设置LocalReport.ReportEmbeddedResource时。什么会导致MyReport1无法正确加载只是因为我没有先使用它?
这是代码,我当然修剪了一些我无法展示的作品。
if (ReportComboBox.SelectedItem.ToString() == "Time by user") {
myReportViewer.LocalReport.DataSources.Clear();
ReportDataSource datasource = new ReportDataSource();
datasource.Name = "DataSet1";
datasource.Value = DataSet1BindingSource;
myReportViewer.LocalReport.DataSources.Add(datasource);
try {
myReportViewer.LocalReport.ReportEmbeddedResource = "";
myReportViewer.LocalReport.ReportEmbeddedResource = "MyApp.MyReport1.rdlc";
ReportParameter test = new ReportParameter("TotalTime", total.ToString("c"));
myReportViewer.LocalReport.SetParameters(test);
myReportViewer.RefreshReport();
} catch (Exception ex) {
}
} else if (ReportComboBox.SelectedItem.ToString() == "Time - Everyone") {
myReportViewer.LocalReport.DataSources.Clear();
ReportDataSource datasource = new ReportDataSource();
datasource.Name = "CompetitionUsers";
datasource.Value = MyData;
myReportViewer.LocalReport.DataSources.Add(datasource);
myReportViewer.LocalReport.ReportEmbeddedResource = "";
myReportViewer.LocalReport.ReportEmbeddedResource = "MyApp.MyReport2.rdlc";
myReportViewer.RefreshReport();
}
用户的时间,是一个吓人的部分。通过查看代码,没有什么真正有用的。只要我先运行它就可以工作。
答案 0 :(得分:8)
您需要做的是在加载新报告之前致电myReportViewer.Reset()
。这样做会将ReportViewer控件重置为其默认状态,LocalReport对象将替换为新实例。这应该可以解决你的问题。
(实际上,我偶然发现了一个非常相似的帖子,它有相同的解决方案:: LocalReport.SetParameters Exception An attempt was made to set a report parameter 'ParameterName' that is not defined in this report)
答案 1 :(得分:0)
您是否尝试将ReportViewer.LocalReport设置为null并在每次从用户检测到更改时重新实例化它?
编辑:
如果用户选择第一个报告选项,请尝试按此顺序设置报告参数:
ReportParameter[] param = new ReportParameter[1];
param[0] = new ReportParameter("Report_Parameter_0",txtParameter.Text);
ReportViewer1.LocalReport.SetParameters(param);
ReportDataSource rds = new ReportDataSource
("DataSet1_Customers_DataTable1", customerList);
ReportViewer1.LocalReport.DataSources.Clear();
ReportViewer1.LocalReport.DataSources.Add(rds);
ReportViewer1.LocalReport.Refresh();