home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 19 / CD_ASCQ_19_010295.iso / vrac / easydr26.zip / EASYANSI.BI < prev    next >
Text File  |  1994-03-19  |  1KB  |  36 lines

  1. ' EASYANSI.BI from Easy-Door V2.0. Included for backward compatibility only.
  2.  
  3. LF$ = CHR$(13) + CHR$(10)
  4. IF AnsiFlag$ >= "1" THEN
  5.  
  6.         AnsiReset$ = ""          ' Put all mode to off, reset
  7.         Blink$ = ""              ' Put in blinking mode
  8.         Invert$ = ""             ' Put in reverse video mode
  9.         Bright$ = ""             ' Put in high intensity mode (bright)
  10.         Down$ = "B"               ' Cursor one line down
  11.         Up$ = "A"                 ' Cursor one line up
  12.         SavePos$ = "s"             ' Save current cursor position
  13.         RestorePos$ = "u"          ' Restore cursor position
  14.         EraseLine$ = ""           ' Erase current line
  15.  
  16.         Black$ = ""             '
  17.         Red$ = ""               '
  18.         Green$ = ""             '
  19.         Yellow$ = ""            ' Foreground text color
  20.         Blue$ = ""              '
  21.         Magenta$ = ""           '
  22.         Cyan$ = ""              '
  23.         White$ = ""             '
  24.  
  25.         BlackBack$ = ""         '
  26.         RedBack$ = ""           '
  27.         GreenBack$ = ""         '
  28.         YellowBack$ = ""        ' Background text color
  29.         BlueBack$ = ""          '
  30.         MagentaBack$ = ""       '
  31.         CyanBack$ = ""          '
  32.         WhiteBack$ = ""         '
  33.  
  34. END IF
  35.  
  36.