See Also

ActiveReport Class  | ActiveReport Members  | Overload List  | Document

Language

Visual Basic

C#

Show All

See Also Languages ActiveReports Send feedback to Data Dynamics

Run() Method

Starts the report processing in blocked mode. 

[Visual Basic]
Overloads Public Sub Run()
[C#]
public void Run();

Remarks

This method does not synchronize a viewer control's linked document until the report has finished processing.

Example

[C#] 

private void Form1_Load(object sender, System.EventArgs e) 

    ActiveReport1 rpt = new ActiveReport1(); 
    rpt.Run(); 
    viewer1.Document = rpt.Document; 
}

[Visual Basic] 

Private Sub Form1_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

See Also

ActiveReport Class  | ActiveReport Members  | Overload List  | Document

 

 


Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.