OPENCONSOLE

Top  Previous  Next

Syntax

OPENCONSOLE

Description

Opens the text-only console window for ouput.

Parameters

None

Return value

None

Remarks

The system only allows one text console per process. If a console window is already opened for output then this command will do nothing.

See Also: CLOSECONSOLE

Example usage

OPENCONSOLE
PRINT "hello"
DO:UNTIL INKEY$ <> ""
CLOSECONSOLE
END