home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_code2 / syscolor / color.bas next >
BASIC Source File  |  1994-06-10  |  2KB  |  22 lines

  1. ' System Colors
  2. Global Const SCROLL_BARS = &H80000000           ' Scroll-bars gray area.
  3. Global Const DESKTOP = &H80000001               ' Desktop.
  4. Global Const ACTIVE_TITLE_BAR = &H80000002      ' Active window caption.
  5. Global Const INACTIVE_TITLE_BAR = &H80000003    ' Inactive window caption.
  6. Global Const MENU_BAR = &H80000004              ' Menu background.
  7. Global Const WINDOW_BACKGROUND = &H80000005     ' Window background.
  8. Global Const WINDOW_FRAME = &H80000006          ' Window frame.
  9. Global Const MENU_TEXT = &H80000007             ' Text in menus.
  10. Global Const WINDOW_TEXT = &H80000008           ' Text in windows.
  11. Global Const TITLE_BAR_TEXT = &H80000009        ' Text in caption, size box, scroll-bar arrow box..
  12. Global Const ACTIVE_BORDER = &H8000000A         ' Active window border.
  13. Global Const INACTIVE_BORDER = &H8000000B       ' Inactive window border.
  14. Global Const APPLICATION_WORKSPACE = &H8000000C ' Background color of multiple document interface (MDI) applications.
  15. Global Const HIGHLIGHT = &H8000000D             ' Items selected item in a control.
  16. Global Const HIGHLIGHT_TEXT = &H8000000E        ' Text of item selected in a control.
  17. Global Const BUTTON_FACE = &H8000000F           ' Face shading on command buttons.
  18. Global Const BUTTON_SHADOW = &H80000010         ' Edge shading on command buttons.
  19. Global Const GRAY_TEXT = &H80000011             ' Grayed (disabled) text.  This color is set to 0 if the current display driver does not support a solid gray color.
  20. Global Const BUTTON_TEXT = &H80000012           ' Text on push buttons.
  21.  
  22.