gpt4 book ai didi

c# - Reporting Services - 在 C# WinForm 中呈现到 Excel

转载 作者:太空宇宙 更新时间:2023-11-03 14:37:18 26 4
gpt4 key购买 nike

我有一个 WinForms 应用程序,可以调用并显示大量报告服务报告。我可以调用

LocalReport.Render("Excel", null, out mimeType, out encoding, out filenameExtension, out streamids, out warnings); 

方法 - 写入 byte[] 数组,但抛出异常

The source of the report definition has not been specified.

有人知道怎么解决吗?

最佳答案

第二个参数使用以下参数。

<DeviceInfo><Toolbar>False</Toolbar></DeviceInfo>

并且您需要使用以下内容设置报告:

var MyInfo = MyRS.LoadReport("/" + reportPath, null);
var ReportDeviceInfo = @"<DeviceInfo><Toolbar>False</Toolbar></DeviceInfo>";
String ExtensionValue = String.Empty;
String EncodingValue = String.Empty;
String MimeTypeValue = String.Empty;
Warning[] WarningValue = null;
String[] StreamIDsValue = null;

var Result = MyRS.Render("Excel", ReportDeviceInfo, out ExtensionValue, out EncodingValue, out MimeTypeValue, out WarningValue, out StreamIDsValue);

关于c# - Reporting Services - 在 C# WinForm 中呈现到 Excel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/507630/

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