If you encounter the following error…
CrystalDecisions.Shared.CrystalReportsException: Load report failed. —> System.Runtime.InteropServices.COMException: The maximum report processing jobs limit configured by your system administrator has been reached.
Make sure you do the following after you are done with the report object….
report.Close();
report.Dispose();
It will probably save you some time.
Leave a Reply