home *** CD-ROM | disk | FTP | other *** search
/ Windows CE - The Ultimate Companion / ROMMAN_CE.iso / Files / Programming / Basice / LIB / FILLRECT.UTL < prev    next >
Text File  |  1997-03-14  |  296b  |  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.