Futurebasic/Language/Reference/window close

From Wikibooks, open books for an open world
Jump to navigation Jump to search

WINDOW CLOSE[edit | edit source]

Syntax[edit | edit source]

WINDOW CLOSE [#]windowID

Description[edit | edit source]

This statement closes the window whose ID number is windowID, removing it from the screen. It also closes all edit fields, picture fields, buttons and other controls that were in the window. If you re-use the same windowID value in a subsequent WINDOW statement, a new window is created.

If you're closing the active window, and your program has other visible windows open, one of the other windows becomes the active window, and becomes the current output window. If you're closing the current output window (but it's not the active window), you should explicitly designate a new destination for output (using the WINDOW statement or the WINDOW OUTPUT statement) before executing any subsequent text or drawing commands.

See Also[edit | edit source]

WINDOW statement