|
|
|
|
|
InvalidInputShowTooltip (Function) In french: SaisieInvalideAfficheBulle
Warning
From version 26, it is recommended to use the new required or invalid input check. For more details, see Required or invalid input.
Shows an error tooltip under an Edit control to indicate why the input is invalid.
// Exit from EDT_PinCode IF Length(EDT_PinCode)<4 THEN InvalidInputShowTooltip("The PIN code must contain at least 4 characters.") SetFocusAndReturnToUserInput(EDT_PinCode) END
Syntax
InvalidInputShowTooltip(<Tooltip text>)
<Tooltip text>: Character string Content of the error tooltip displayed under the Edit control in case of invalid input. Remarks - The tooltip disappears when the user clicks on the tooltip or hits a key on the keyboard.
- InvalidInputShowTooltip must be called from an Edit control, otherwise it will have no effect.
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|