Crystal Reports Exception: The maximum report processing jobs limit configured by your system administrator has been reached

前端 未结 11 1619
猫巷女王i
猫巷女王i 2020-12-06 02:06

I\'m facing a very buggy issue, in ASP.NET application after viewing the same report many times simultaneously I got this exception:

The maximum repor

11条回答
  •  有刺的猬
    2020-12-06 02:19

    You have to Dispose your report instance after all. If you Dispose the report after showing it, you will never see the error:

    The maximum report processing jobs limit configured by your system administrator has been reached

    Code:

    Dim report1 As rptBill = clsBill.GetReport(billNumber)
    
    rpt.Print()
    
    'Cleanup the report after that!
    rpt.Close()
    rpt.Dispose()
    

提交回复
热议问题