|
|
|
|
|
- Focus gain
- ScreenFirst, SetFocus and SetFocusAndReturnToUserInput
- Error
- SetFocusAndReturnToUserInput on the last selected control
SetFocusAndReturnToUserInput (Function) Stops the current process, sets the focus to the specified control, window or page, and allows the user to enter data.
IF EDT_Edit1 = "" THEN
Error("Enter a value")
SetFocusAndReturnToUserInput(EDT_Edit1)
END
Sintaxis
SetFocusAndReturnToUserInput([<Element to handle>])
<Element to handle>: Optional control, window or page name Name of control, column or window that will gain focus (see Notes). If this parameter is not specified, the current control gains focus.To specify a control that belongs to a window other than the current window, <Element to handle> must be in the following format: <Window name>.<Control name>. Observaciones Taking "focus" is represented in different ways: - Blinking cursor (or "Caret") for the edit controls.
- Dotted rectangle for the other types of controls (Button, List Box, Radio Button controls, etc.).
ScreenFirst, SetFocus and SetFocusAndReturnToUserInput These functions have a different behavior: - SetFocusAndReturnToUserInput stops the current process to force the input in the specified control.
- ScreenFirst defines which control will receive input focus (when the current code stops and input focus is set back to a control).
- SetFocus stops the current process, defines which control will receive input focus and resumes the current process.
A WLanguage error occurs if <Element to handle> does not correspond to a control in the current window or page. Clasificación Lógica de negocio / UI: Código UI
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|