WinStudio
IWSFormComponent interface
Returns a Boolean value indicating whether the validators for the specified component were run since the form was loaded.
object.GetValidatorsHaveRunSinceLoadFromSource( )
Part |
Description |
| object | Required. A reference to a valid form component object. |
A return value of:
Sub Main()
If ThisForm.Components("StringTableNameGridCol"). _
GetValidatorsHaveRunSinceLoadFromSource() Then
Application.ShowMessage("Field validated.")
Else
Application.ShowMessage("Field not validated.")
End If
End Sub