将报告导出到Excel时RDLC报告错误

时间:2016-09-03 11:22:57

标签: c# winforms rdlc

我正在研究Windows应用程序中的RDLC报告。 我的数据正确显示在报表查看器中。但是当我使用Reportviewer选项单击导出报告toExcel / Word / Pdf时,错误会闪烁。

如何知道reportviewer中发生了什么,因为在此this.reportViewer1.RefreshReport();行之前没有错误

我发现了相同的问题,但是打印选项上有错误  如何解决这个问题? 提供链接或任何建议

 private void RDLSViewer_Load(object sender, EventArgs e)
        {
            ReportDataSource datasource = new ReportDataSource("DataSetManifest", dtManifestReport);
            this.reportViewer1.LocalReport.DataSources.Clear();
            this.reportViewer1.LocalReport.DataSources.Add(datasource);
            this.reportViewer1.RefreshReport();
        }

enter image description here

1 个答案:

答案 0 :(得分:0)

我认为这是由visual studio的窗口布局系统引起的。

转到Visual Studio工具栏中的“窗口”选项 - >重置Windows布局

我发现其他人发布了这个......

在“重置Windows布局”之后,问题消失了。