| Using ring menus / MENU control instructions | |
CONTINUE MENU resumes the execution of a MENU block.
CONTINUE MENU
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.
MENU "Stock"
...
COMMAND "Exit"
IF question("Exit the program?")==FALSE THEN
CONTINUE MENU
END IF
CALL commit_changes()
EXIT MENU
END MENU