加载报告失败

发布于 2024-10-19 06:52:51 字数 390 浏览 1 评论 0原文

加载报告失败 当我尝试打开 Crystal Report 时记录此错误,并且如果我重新启动 iis (iisreset),则它可以正常工作。

这是我的代码:

Dim objReport As New CrystalDecisions.CrystalReports.Engine.ReportClass
Dim location As String = context.Server.MapPath("../POC/POC1.rpt")
objReport.FileName = location
objReport.Load()
objReport.SetDataSource(dsPOC)

可能是什么问题?

Load report failed this error logged when i try to open Crystal report and if i restart my iis (iisreset) then it's working.

Here's my code:

Dim objReport As New CrystalDecisions.CrystalReports.Engine.ReportClass
Dim location As String = context.Server.MapPath("../POC/POC1.rpt")
objReport.FileName = location
objReport.Load()
objReport.SetDataSource(dsPOC)

What could be the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

茶花眉 2024-10-26 06:52:51

试试这个......它会给你完美的想法......

using System;using CrystalDecisions.CrystalReports.Engine;using CrystalDecisions.Shared;namespace Report
 {       public partial class Report : Document    
  {       public void ReportLoad()    
   {             ReportDocument reportDocument = new ReportDocument();       
 string filePath = "C:\Projects\Application\Report\CrystalReport.rpt";            reportDocument.Load(filePath);  
          crystalReportViewer.ReportSource = reportDocument; 
      }   
}}  

Try this...it will give you the perfect idea....

using System;using CrystalDecisions.CrystalReports.Engine;using CrystalDecisions.Shared;namespace Report
 {       public partial class Report : Document    
  {       public void ReportLoad()    
   {             ReportDocument reportDocument = new ReportDocument();       
 string filePath = "C:\Projects\Application\Report\CrystalReport.rpt";            reportDocument.Load(filePath);  
          crystalReportViewer.ReportSource = reportDocument; 
      }   
}}  
自由如风 2024-10-26 06:52:51

感谢您的回复。现在问题通过objReport.Dispose()解决了。
我在附加每个文档后调用了此 Dispose 方法。问题可能是我未能从内存中释放数据。

问候,
萨吉

Thanks for your response. Now the problem solved by objReport.Dispose().
I called this Dispose Method after appending each document. The problem might be i failed to release data form memory.

regards,
saj

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文