Cursor positioning
Locate row, column
LocaXY column, row
LocaYX row, column
row, column:ivar
Places the cursor at position x (column) and y (row). The exact location depends on the size of the font selected in the Form.
OpenW # 1
Print "Hello GFA"
Locate 12, 4
Print "Hello GFA with Locate"
LocaXY 15, 8
Print "Hello GFA with LocaXY"
LocaYX 15, 8
Print "Hello GFA with LocaYX"
Print AT() combines the functions of Locate and the subsequent Print commands.
Print At, VTab, HTab, LocaXY, LocaYX
{Created by Sjouke Hamstra; Last updated: 09/10/2014 by James Gaite}