home *** CD-ROM | disk | FTP | other *** search
- set talk off
- load cfill.bin
- code = 0
- row = 1
- col = 5
- clear
- do while code <= 127
- @ row,col say 'code '+ltrim(str(code,3))è call cfill with chr(row+1)+chr(col+1)+chr(1)+chr(8)+chr(code)
- code = code + 1
- row = iif(row = 16, 1, row+1)
- col = iif(row = 1, col+9, col)
- enddo
- @ 20,0
- wait