ABL element
|
Description
|
Example
|
Multi-byte support
|
APPLY statement
|
Applies an event to a widget or a procedure.
|
APPLY "CHOOSE" TO order-amt IN FRAME x.
|
The name of the event can contain multi-byte characters.
|
LASTKEY function
|
Returns, as an integer, the key code of the most recent keyboard or mouse event.LASTKEY returns values only after the input method places the data into the keyboard buffer.
|
IF LASTKEY = KEYCODE("F9")...
|
The key sequence can be a multi-byte character.
|
READKEY statement
|
Reads one keystroke from an input source and sets the value of LASTKEY to the keystroke's keycode.
|
READKEY.
|
The key sequence can be a multi-byte character.
|