Format
LOCATE row,column
Description
This statement is used to position the cursor to a row and column. Row and
Column should be integers. Row has the range 0-24, Column has the range 0-
79. This function does not perform edits on the ranges of row and column.
Consequently using this function with values outside these ranges will have
unpredictable results.
Example
LOCATE 10,20
PRINT "HELLO"
After execution of these statements, the message "HELLO" will appear
beginning at row 10, column 20. |