ActiveReports 6 Online Help
Optimizing ActiveReports
See Also Send comments on this topic.
ActiveReports 6 > ActiveReports User Guide > Concepts > Optimizing ActiveReports

Glossary Item Box

 

Optimization can be crucial for large reports (i.e. over 100 pages). Here is some information which will help you to achieve the best possible results for such reports. To optimize ActiveReports for the web, please refer to the memory considerations section.

Memory Considerations

The following code uses the above steps to release a report.

ShowTo write the code in Visual Basic.NET

Visual Basic.NET code. Copy Code
rpt.Document.Dispose()
rpt.Dispose()
rpt = Nothing

ShowTo write the code in C#

C# code. Copy Code
rpt.Document.Dispose();
rpt.Dispose();
rpt = null;

Speed Considerations

See Also