ActiveReports 9
ShowParameterUI Property
Example 

Sets or returns whether or not the query parameters dialog box will appear when the report is run.
Syntax
'Declaration
 
Public Property ShowParameterUI As System.Boolean
public System.bool ShowParameterUI {get; set;}
Remarks
Set this property to False if the report is a subreport that will take its parameter values from the parent report.
Example
private void rptChild_ReportStart(object sender, System.EventArgs eArgs)
{    
    this.ShowParameterUI = false;
}
Private Sub rptChild_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart        
    Me.ShowParameterUI = False
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

SectionReport Class
SectionReport Members
ParameterUIClosed Event

 

 


Copyright © 2014 GrapeCity, inc. All rights reserved

Support Forum