EXIT SELECT

From QB64 Phoenix Edition Wiki
Revision as of 14:32, 17 March 2023 by RhoSigma (talk | contribs) (Created page with "The '''EXIT SELECT''' statement does exit from a '''SELECT EVERYCASE''' block, doesn't matter which '''CASE''' is currently executed. {{PageSyntax}} : EXIT SELECT {{PageDescription}} * Use '''EXIT SELECT''' to immediately exit an entire SELECT EVERYCASE block. * Execution will proceed after END SELECT. * If you just wanna exit from a certain '''CASE''' while still checking for further '''CASE''' matches, then use EXIT CASE instead. {{Pag...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The EXIT SELECT statement does exit from a SELECT EVERYCASE block, doesn't matter which CASE is currently executed.


Syntax

EXIT SELECT


Description

  • Use EXIT SELECT to immediately exit an entire SELECT EVERYCASE block.
  • Execution will proceed after END SELECT.
  • If you just wanna exit from a certain CASE while still checking for further CASE matches, then use EXIT CASE instead.


See also



Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link