Quote Originally Posted by penelopepug View Post
... is the presentation of the data shown limited to carraige returns and linefeeds (13,10)? Is there anyway to show columns of data for example
Yes, you can do all kinds of stuff with HyperTerminal, and ANSI.

Here's a couple of the basics ...
Code:
ClearScreen:
    HSEROUT [27,"[2J"]
RETURN
<hr>
Line    VAR BYTE
Column  VAR BYTE

Line = 14
Column = 32
GOSUB MoveCursor

MoveCursor:
    HSEROUT [27,"[",DEC2 Line,";",DEC2 Column,"H"]
RETURN