How to Show Report?

Top  Previous  Next

 

It is necessary call only one method to show a report:

 

C#

 

StiReport report = new StiReport();

report.Load("report.mrt");

report.Show();

 

 

VB

 

Dim Report As StiReport = New StiReport()

Report.Load("report.mrt")

Report.Show()

 

 

If the report was not rendered before showing, the Show method will render a report using the Render method.

 

 

 

Converted from CHM to HTML with chm2web Pro 2.85 (unicode)