ActiveReports 6 Online Help
Run Method
Example 

Starts the report processing.
Overload List
OverloadDescription
Run(Boolean)Starts report execution and optionally keeps any linked viewer control document in sync with the report's document.  
Run()Starts the report processing in blocked mode.   
Remarks
Once the report is completed, the Document property is set to the report output Document.  You can use the Document to Print, Preview or Export the output.
Example
private void formReport_Load(object sender, System.EventArgs e)
{
    ActiveReport1 rpt = new ActiveReport1();
    rpt.Run();
    viewer1.Document = rpt.Document;
}
Private Sub formReport_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load    
    Dim rpt As New rptMain()
    rpt.Run()
    Viewer1.Document = rpt.Document
End Sub
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ActiveReport Class
ActiveReport Members
Document Property
Cancel Method
Stop Method

Send Feedback