ActiveReports3 Request technical support
Show Method
See Also  Example


Loads the report layout, runs it with the bound data source and any script in the report xml, and shows it in a viewer.

Syntax

Visual Basic (Declaration) 
Public Sub Show() 
Visual Basic (Usage)Copy Code
Dim instance As ActiveReport3
 
instance.Show()
C# 
public void Show()

Example

Visual BasicCopy Code
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim rpt As New ActiveReport1
    rpt.Show()
End Sub
C#Copy Code
private void button1_Click(object sender, System.EventArgs e)
{
   ActiveReport1 rpt =
new ActiveReport1();
   rpt.Show();
}

Remarks

There is no need to place a viewer control on a form when using this method.

See Also