gpt4 book ai didi

C# 从 DLL 中提取报表并将其放入报表查看器中

转载 作者:行者123 更新时间:2023-11-30 18:01:14 25 4
gpt4 key购买 nike

我的方案是创建一个 DLL,其中包含我的报告,然后将该 DLL 添加到我的主项目中。我的报告设置为嵌入式资源,在我的主项目中,我正在执行以下操作以将报告设置到 ReportViewer 中。

Assembly assembly = Assembly.LoadFrom("MyAssembly.dll");
Stream stream = assembly.GetManifestResourceStream("MyAssembly.Reports.MyReport.rdlc");
MyReportViewer.LocalReport.LoadReportDefinition(stream);
MyReportViewer.RefreshReport();

现在当我这样做时,我知道报告正在加载,某种程度上,因为我可以设置 ReportParameters。如果它根本没有加载,我会抛出一个异常,说明参数不存在或类似的东西。

发生的事情是我的报告将加载所述参数,当我 RefreshReport() 时,我得到了这个。

The source of the report definition has not been specified.

关于为什么会发生这种情况的任何线索?当涉及到从 dll 加载报告时,我觉得我可能会遗漏一些东西。但是,当我搜索 Internet 时,这似乎是正确的解决方案。

作为旁注,我在我的 .dll 中有一个表单,我正在调用它并将报告加载到非常好。但是,这是一个不同的情况,因为该表单明确知道该报告的位置。

在这种情况下,我有一个不在 .dll 内的 ReportViewer,我试图将 .dll 内的 .rdlc 加载到不在 dll 内的 ReportViewer 中。

编辑最重要的是,如果我使用以下代码,我可以在 dll 中看到我需要的文件。

    string[] resources = assembly.GetManifestResourceNames();

> "MyApp.Controls.Reports.MyCustomReport.rdlc"

最佳答案

程序开头的这段代码解决了我的问题

 MyReportViewer.Reset();

关于C# 从 DLL 中提取报表并将其放入报表查看器中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9282318/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com