_SCREENEXISTS

From QB64 Wiki
Revision as of 00:21, 9 September 2017 by imported>SMcNeill
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The _SCREENEXISTS function returns true (-1) once a screen has been created.


Syntax

screenReady%% = _SCREENEXISTS


Description

  • Function returns true (-1) once a program screen is available to use or change.
  • Can be used to avoid program errors because a screen was not ready for input or alterations.
    • Use before _TITLE, _SCREENMOVE and other functions that require the output window to have been created.


Examples

Example: The loop waits until the screen exists to add the title.

SCREEN 12 DO: LOOP UNTIL _SCREENEXISTS _TITLE "My Title"


See also



Navigation:
Go to Keyword Reference - Alphabetical
Go to Keyword Reference - By usage
Go to Main WIKI Page