I am having a problem in Crystal Report - Error Messsage: Error loading report

I am having a problem in Crystal Report - Error Messsage: Error loading report.

How to solve this problem?

0
source share
2 answers

If your report runs for a while and then crashes, make sure you delete it.

if(myReport != null) { myReport .Close(); myReport .Dispose(); } 
+1
source

You can cause data to appear in the report in the DataBinding and Navigate methods.

 protected void CrystalReportViewer1_DataBinding(object sender, EventArgs e) { this.ShowReportData(); } protected void CrystalReportViewer1_Navigate(object source, CrystalDecisions.Web.NavigateEventArgs e) { this.ShowReportData(); } 
+2
source

Source: https://habr.com/ru/post/893915/


All Articles