KEYS section

The KEYS section can be used to define default key labels for the current form.

Syntax

KEYS
key-name = [%]"label"
[...]
[END]
  1. key-name is the name of a key (like F10, Control-z).
  2. label is the text to be displayed in the button corresponding to the key.

Usage

The KEYS section can be used to define default key labels at the form level.

The KEYS section must appear in the sequence described in form file structure.

The KEYS section is optional in a form definition.

The END keyword is optional.

Note: This feature is supported for backward compatibility. Consider using action attributes to define accelerator keys and decorate actions.

Example

KEYS
  F10 = "City list"
  F11 = "State list"
  F15 = "Validate"
END