home *** CD-ROM | disk | FTP | other *** search
- * NOTE..........: This is a program that ONLY works with dBXL
- * and will NOT run in dBASE by itself!
- *
- * ?? chr(145)+<screen name>/ && NOTE: With FLASHUP WINDOWS
- * && use the character 126 instead
- * && of 145.
- * with
- *
- * STRING = '<screen name>'
- * DO FLASHCDE
- *
- * For example:
- * STRING = 'S.SCREEN1.SCR/'
- * DO FLASHCDE
- *
- * Note: Leave out the < and the > between the quotes when you
- * run this.
- *
- AH = 256*14
- AL = 145
- *
- * -- send 1 CHR(145) to Int 10H:
- *
- AXREG = AH + AL
- DOSINT 16,AXREG
- *
- * -- send FLASHCODE screen name or FLASHCODE command to Int 10H:
- *
- I = 1
- DO WHILE I <= LEN(STRING)
- AL = ASC(SUBSTR(STRING,I,1))
- AXREG = AH + AL
- DOSINT 16,AXREG
- I = I+1
- ENDDO