home *** CD-ROM | disk | FTP | other *** search
- comment #
-
- +----------------------------------------------------------------------+
- | |
- | QBWiz Copyright (c) 1990-1992 Thomas G. Hanlin III |
- | |
- | QuickBasic Access Library |
- | |
- +----------------------------------------------------------------------+
-
- #
-
- public BACKCOLOR
-
-
- .model medium
-
- .code
-
-
-
- BACKCOLOR proc ; get default background color
- xor ax,ax
- mov al,b$BackColor
- ret
- BACKCOLOR endp ; get default background color
-
-
-
- .data
-
- extrn b$BackColor: byte
-
-
-
- end
-