CONSOLETITLE
From QB64 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.
$SCREENHIDE _DELAY 4 $CONSOLE _CONSOLETITLE "Error Log" _DEST _CONSOLE PRINT "Errors go here! (fyi, this line is not an error)" END
See also: