Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
strRptLin = space(80) ' fixed length string
mid(strRptLin, 1, 5) = "ID"
mid(strRptLin, 6, 25) = " address"
mid(strRptLin, 26, 10) = "Inv amt"
...
' write header line
(write strRptLin)
...loop...
strRptLin = space(80) ' fixed length string
mid(strRptLin, 1, 5) = mytable.userid ' if longer than 5 is truncated
mid(strRptLin, 6, 25) = mytable.homeaddress
mid(strRptLin, 26, 10) = right(space(10) & mytable.amt, 10) ' right justify a column
...
' write data line
(write strRptLin)
...repeat...