IRdsDictionaryBox.ShowFindDialog

Fore Syntax

ShowFindDialog;

Fore.NET Syntax

ShowFindDialog();

Description

The ShowFindDialog method opens the standard dialog box for searching MDM dictionary elements.

Fore Example

Executing the example requires a form with the Button1 button, the RdsDictionaryBox component named RdsDictionaryBox1, and the UiRdsDictionary component that is a data source for RdsDictionaryBox1. Example is a handler of the OnClick event for a button.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
    RdsDictionaryBox1.ShowFindDialog;
End Sub Button1OnClick;

After executing the example a standard dialog box opens for MDM dictionary elements search.

Fore.NET Example

Executing the example requires a .NET form with the button1 button, the RdsDictionaryBoxNet component named rdsDictionaryBoxNet1, and the UiRdsDictionaryNet component, that is a data source for rdsDictionaryBoxNet1. Example is a handler of the Click event for the button.

Imports Prognoz.Platform.Interop.Forms;

Private Sub button1_Click(sender: System.Object; e: System.EventArgs);
Begin
    RdsDictionaryBox1.ShowFindDialog();
End Sub;

After executing the example a standard dialog box opens for MDM dictionary elements search.

See also:

IRdsDictionaryBox