<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > Console > Console_Free |
Description
This command serves to destroy program console.
Syntax
Console_Free
Returns
None.
Parameters
Name |
Type |
Optional |
Meaning |
Remarks
Closing console this way will not end the program.
Restrictions
One script can use only one console at time. In case console already exists, you can use Console_Free to remove it before calling Console_Alloc
See also
Examples
USES "Console"
PRINTL "Program is starting..."
WAITKEY
'– Print SOME other startup info And wait For USER
'– Remove console In Case it is Not needed anymore
CONSOLE_FREE
'– Start main program ( DIALOG based For example )
'– Create New console again
CONSOLE_ALLOC
'– Print SOME info before End of program
PRINTL "Program is about To end..."
WAITKEY