CONTINUE MENU instruction

CONTINUE MENU resumes the execution of a MENU block.

Syntax

CONTINUE MENU

Usage

The CONTINUE MENU ignores the remaining instructions in the current program section of a MENU block, re-displays the menu options and gives the control back to the user to select a new menu option.

The statements following the CONTINUE MENU instruction are skipped.

Example

MENU "Stock"
  ...
  COMMAND "Exit"
    IF question("Exit the program?")==FALSE THEN
       CONTINUE MENU
    END IF
    CALL commit_changes()
    EXIT MENU
END MENU