home *** CD-ROM | disk | FTP | other *** search
- '-----------------------------------------------------------------------+
- ' |
- ' MODULENAME : VZCOLORS.BAS |
- ' |
- ' DESCRIPTION : include module colors |
- ' foreground = 0 - 31 (16 - 31 = blinking) |
- ' background = 0 - 7 |
- ' border = 0 - 15 (not for VGA and XVGA) |
- ' |
- ' colors are: |
- ' 0 - ZW - zwart 4 - RD - rood |
- ' 1 - DB - donker blauw 5 - PA - paars |
- ' 2 - GR - groen 6 - GL - bruin/geel |
- ' 3 - LB - licht blauw 7 - WT - wit |
- ' |
- ' all colors can be set to bright by simply |
- ' adding HLDR. Note that 6 (brown) will be |
- ' bright yellow. All colors from 0 through |
- ' 15 will blink by adding BLNK. For example |
- ' GR + HLDR + BLNK, will display a blinking |
- ' bright green color. |
- ' |
- ' REV DATE HISTORY |
- ' 0.0 04OKT91 first version |
- ' 1.0 28DEC91 two character mnemonics |
- ' |
- '-----------------------------------------------------------------------+
- ' ALL PROGRAMMING MATERIAL IS PROPERTY OF VZ-SYSTEMS (c) NETHERLANDS |
- '-----------------------------------------------------------------------+
-
- DEFINT A-Z
-
- CONST ZW = 0, DB = 1, GR = 2, LB = 3
- CONST RD = 4, PA = 5, GL = 6, WT = 7
-
- CONST HLDR = 8, BLNK = 16
-
-