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 is optional in a form definition.

The END keyword is optional.

This feature is provided for backward compatibility, use action defaults to define action view texts.

Example

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