Re: printing
- Posted by Pete Lomax <petelomax at blueyonder.co.uk> Jan 10, 2003
- 479 views
On Thu, 9 Jan 2003 12:02:46 -0700, sixs at ida.net wrote: >When I print the first column of addresses and then=20 >print the second column , it drops down a line before=20 >printing the second column. You appear to have coded: > linec =3D lineCount*fontSize[2]=20 and then: > for prtcol =3D 1 to totcols do > setPosition( Printer, colx, lineCount*fontSize[2]) > lineCount +=3D 1 > setPosition( Printer, colx, lineCount*fontSize[2]) Try using linec and only incrementing lineCount on each row. Pete