ActiveReports 18 .NET Edition
MESCIUS.ActiveReports.Viewer.Win Assembly / GrapeCity.ActiveReports.Viewer.Win Namespace / Viewer Class / ShowFindDialog Method
Example

In This Topic
    ShowFindDialog Method
    In This Topic
    Displays Find Dialog
    Syntax
    'Declaration
     
    Public Sub ShowFindDialog() 
    public void ShowFindDialog()
    Example
    private void arv_Load(object sender, System.EventArgs e)
    {
        rptDD rpt = new rptDD();
        rpt.Run();
        arv.Document = rpt.Document;
        arv.ShowFindDialog();
    }
    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
    See Also