_CONSOLETITLE - mkilgore/QB64pe GitHub Wiki
The _CONSOLETITLE statement creates the title of the console window using a literal or variable string.
- _CONSOLETITLE text$
- The text$ used can be a literal or variable STRING value.
Example: Hiding the main program window while displaying the console window with a title.
_DEST _CONSOLE PRINT "Errors go here! (fyi, this line is not an error)" END |
- Note: You can also use SHELL "title consoletitle" to set the title of the console window. However, the recommended practice is to use _CONSOLETITLE.
Navigation:
Go to Keyword Reference - Alphabetical
Go to Keyword Reference - By usage
Go to Main WIKI Page