Updated on Kisan Patel
Problem:
Crystal Reports Exception: The maximum report processing jobs limit configured by your system administrator has been reached.
Solution:
You have to Dispose your report instance after print. 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” again.
rpt.Print() 'Cleanup the report after that! rpt.Close() rpt.Dispose()
Or
Change the value of “PrintJobLimit”, from 75 to 500, in the following regedit
paths:
\HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Report Application Server\InprocServer