ILanerResultsBox.NoShowErrors

Fore Syntax

NoShowErrors: Boolean;

Fore.NET Syntax

NoShowErrors: boolean;

Description

The NoShowErrors property determines whether information about errors is hidden.

Comments

To determine whether the specified panel is shown, use the ILanerResultsBox.ContainerVisible property.

Available Values:

Fore Example

Executing the example requires a form containing the LanerBox component with the LanerBox1 identifier, the LanerResultsBox component with the LanerResultsBox1 identifier and the UiErAnalyzer component with the UiErAnalyzer1 identifier. Select UiErAnalyzer1 as a data source for the LanerBox1 and LanerResultsBox1 components.

The example is a handler of the OnShow event for the form.

Sub OBJ7415FormOnShow(Sender: Object; Args: IEventArgs);
Begin
    LanerResultsBox1.NoShowErrors := True;
End Sub OBJ7415FormOnShow;

After executing the example information about errors is hidden for the LanerResultsBox1 component.

Fore.NET Example

The requirements and result of Fore.NET Example execution match with those in the Fore Example. Use Fore.NET analogs instead of Fore components.

Private Sub OBJ7419Form_Shown(sender: System.Object; e: System.EventArgs);
Begin
    lanerResultBoxNet1.NoShowErrors := True;
End Sub;

See also:

ILanerResultsBox