当前位置:  开发笔记 > 编程语言 > 正文

使用Microsoft.Reporting.WinForms动态加载嵌入式资源报告

如何解决《使用Microsoft.Reporting.WinForms动态加载嵌入式资源报告》经验,为你挑选了1个好方法。

如何从嵌入式资源动态加载新报告?我创建了一个报告项目,其中包含一个作为嵌入式资源的报告.我添加了第二个报告文件,并使用以下代码切换报告:

this.reportViewer1.LocalReport.ReportEmbeddedResource = "ReportsApplication2.Report2.rdlc";
this.reportViewer1.LocalReport.Refresh();
this.reportViewer1.RefreshReport();

执行此代码时,原始报表在报表查看器中仍然可见.

我也试过用

LocalReport.LoadReportDefinition

但结果相同.



1> Craig Eddy..:

答案:你必须打电话

.Reset();

在更改ReportEmbeddedResource的值或调用LoadReportDefinition之前.

在你这样做之后,你也必须打电话

.LocalReport.DataSources.Add( ... );

重新建立数据源.

推荐阅读
云聪京初瑞子_617
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有