|
|
|
|
|
InvalidInputShowMessage (Function) In french: SaisieInvalideAfficheErreur Displays an invalid input error for the specified control. This function does not check the entered data. IF NOT bCheckPassword(EDT_Password) THEN
InvalidInputShowMessage(EDT_Password, ...
"The password must contain at least one number, one capital letter and one symbol.")
END
Syntax
InvalidInputShowMessage(<Control used> [, <Text>])
<Control used>: Control name Name of the control affected by the error. <Text>: Optional character string Error message to be displayed. If this parameter is not specified, the value of the InvalidInputMessage property of the control will be used; and if this value is missing, a generic message will be displayed. Remarks - The control will no longer be considered as containing errors once the data is edited by the user or programmatically.
- You can customize the error display mode in the control description window.
- To check the data entered in the controls, use InvalidInputDetect or InvalidInputListControl.
This function cannot be used with Combo Box controls because this type of control is not available in Android applications.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|