NoShowErrors: Boolean;
NoShowErrors: boolean;
The NoShowErrors property determines whether information about errors is hidden.
To determine whether the specified panel is shown, use the ILanerResultsBox.ContainerVisible property.
Available Values:
True. Information about errors is hidden.
False. Information about errors is shown.
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.
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: