gpt4 book ai didi

c# - 最大报表处理作业限制 Crystal 报表,这是由于我的代码错误?

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

我正在使用使用 Visual Studio 2012 的 Microsoft Crystal Report Developer 版本。在我的报告工作正常之前,但是当我在生产中部署我的报告时,之后我收到错误消息,您的系统管理员配置的最大报告处理作业限制已经在 Crystal 报告中以及在 c->windows->temp 文件夹中到达。rpt 文件未删除。我如何在临时文件夹中删除它。我的代码中是否有任何错误。我正在使用以下代码。我怎样才能摆脱这个错误。我也阅读了各种论坛,但我没有找到解决方案

public partial class myClass : System.Web.UI.Page
{
ReportDocument crystalReport = new ReportDocument();

protected void Page_Init(object sender, EventArgs e)
{


crystalReport.Load(Server.MapPath("~/path/mainrep.rpt"));
crystalReport.SetDataSource(dtblstdtmtbl);
int exportFormatFlags = (int)(CrystalDecisions.Shared.ViewerExportFormats.PdfFormat);
cviewer.AllowedExportFormats = exportFormatFlags;
cviewer.ToolPanelView = CrystalDecisions.Web.ToolPanelViewType.None;
cviewer.HasToggleGroupTreeButton = false;
cviewer.HasToggleParameterPanelButton = false;
cviewer.DisplayGroupTree = false;
cviewer.EnableDrillDown = false;

cviewer.ReportSource = crystalReport;
}




protected void Page_Unload(object sender, EventArgs e)
{
CloseReports(crystalReport);
crystalReport.Close();
crystalReport.Dispose();
cviewer.Dispose();
crystalReport = null;
cviewer = null;
GC.Collect();
GC.WaitForPendingFinalizers();
}//end page unload


private void CloseReports(ReportDocument reportDocument)
{
Sections sections = reportDocument.ReportDefinition.Sections;
foreach (Section section in sections)
{
ReportObjects reportObjects = section.ReportObjects;
foreach (ReportObject reportObject in reportObjects)
{
if (reportObject.Kind == ReportObjectKind.SubreportObject)
{
SubreportObject subreportObject = (SubreportObject)reportObject;
ReportDocument subReportDocument = subreportObject.OpenSubreport(subreportObject.SubreportName);
subReportDocument.Close();
}
}
}
reportDocument.Close();
}
}

最佳答案

这是 Crystal Report 中的一个非常常见的错误,它会给出以下消息。

“已达到系统管理员配置的最大报告处理作业限制。”

这实际上意味着已达到 Crystal Report 打印作业限制,您应该通过增加注册表中的作业限制来处理此问题。这个问题的根本原因是垃圾收集器 (GC) 在其收集过程中无法清除报表文档的引用,它只是一个清晰的报表查看器。

HKEY_LOCAL_MACHINE\SOFTWARE\CRYSTAL DECISIONS\10.0\REPORT APPLICATION SERVER\SERVER\PrintJobLimit

关于c# - 最大报表处理作业限制 Crystal 报表,这是由于我的代码错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37718114/

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