ActiveReports 8
ShowFindDialog Method
See Also  Example
GrapeCity.ActiveReports.Viewer.Win.v8 Assembly > GrapeCity.ActiveReports.Viewer.Win Namespace > Viewer Class : ShowFindDialog Method

Glossary Item Box

Displays Find Dialog

Syntax

Visual Basic (Declaration) 
Public Sub ShowFindDialog() 
C# 
public void ShowFindDialog()

Example

C#Copy Code
private void arv_Load(object sender, System.EventArgs e)
{
    rptDD rpt = new rptDD();
    rpt.Run();
    arv.Document = rpt.Document;
    arv.ShowFindDialog();
}
VB.NETCopy Code
Private Sub arv_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles arv.Load
    Dim rpt As New rptDD
    rpt.Run()
    arv.Document = rpt.Document
    arv.ShowFindDialog()
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