ActiveReports3 Request technical support
ShowParameterUI Property
See Also  Example


Sets or returns whether or not the query parameters dialog box will appear when the report is run.

Syntax

Visual Basic (Declaration) 
Public Property ShowParameterUI As Boolean
Visual Basic (Usage)Copy Code
Dim instance As ActiveReport3
Dim value As Boolean
 
instance.ShowParameterUI = value
 
value = instance.ShowParameterUI
C# 
public bool ShowParameterUI {get; set;}

Example

C#Copy Code
private void rptChild_ReportStart(object sender, System.EventArgs eArgs)
{    
   
this.ShowParameterUI = false;
}
Visual BasicCopy Code
Private Sub rptChild_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
    Me.ShowParameterUI = False
End Sub

Remarks

Set this property to False if the report is a subreport that will take its parameter values from the parent report.

See Also