home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2000 August / augusty_2000.iso / Windows-CE / Applications / basice / FILLRECT.UTL < prev    next >
Encoding:
Text File  |  1997-07-08  |  296 b   |  9 lines

  1. procedure fillrect( x1%,y1%,x2%,y2%)
  2.    print "R";chr$(shift%(x1%,-6)+1);chr$((x1% and 63)+1);\
  3.               chr$(shift%(y1%,-6)+1);chr$((y1% and 63)+1);
  4.  
  5.    print      chr$(shift%(x2%,-6)+1);chr$((x2% and 63)+1);\
  6.               chr$(shift%(y2%,-6)+1);chr$((y2% and 63)+1);
  7.  
  8.    endproc
  9.