CONTINUE MENU instruction

Syntax

CONTINUE MENU

Usage

The CONTINUE MENU instruction resumes the execution of a classical MENU dialog.

CONTINUE MENU skips the instructions remaing in the current code block (that belongs to the current dialog), redisplays the menu options, and gives the control back to the user.

Example

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