home *** CD-ROM | disk | FTP | other *** search
- DEFINT A-Z
-
- DECLARE SUB HiLite (Row%, Col%, Length%, MaxRow%, DeAttr%, HiAttr%, RetCode%)
-
- Start:
- CLS
-
- LOCATE 5, 35: PRINT " One"
- LOCATE 6, 35: PRINT " Two"
- LOCATE 7, 35: PRINT " Three"
- LOCATE 8, 35: PRINT " Four"
- LOCATE 9, 35: PRINT " Five"
-
- HiLite 5, 35, 6, 9, 7, 79, RetCode
- CLS
- PRINT "Return Code ="; RetCode
- LOCATE 5, 15: PRINT "[ Press Esc To Quit - Any Other Key To Continue ]"
- SLEEP
-
- IF INKEY$ = CHR$(27) THEN END ELSE GOTO Start
-
-