'set column starts for left alignment or column ends for right alignment
cTabs(1) = 5
cTabs(2) = 15
cTabs(3) = 25
cTabs(4) = 35
' this method gives you left alignment at set column starts
PRINT "1234567890123456789012345678901234567890"
' to get right alignment on columns which is desired for columns of numbers
'subtract off the LEN() of the item you are about to print when you use LOCATE
' the cTabs become the right side of the cols
LOCATE 13, 1:
PRINT "1234567890123456789012345678901234567890"
'subtract it's LEN from cTabs(col)
'repeat for all numbers in row