CONTINUE MENU instruction

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

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

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.

The CONTINUE MENU instruction can only be used in a singular MENU dialog, it cannot be used in a DIALOG / END DIALOG multiple dialog block.