onerrorgoto
Dec 1st, 1999, 03:11 PM
Earlier today I needed som fancy colors for my app and I searched the Help and found this nice list:
From help/color constants
System Colors
Constant Value Description
vbScrollBars &H80000000 Scroll bar color
vbDesktop &H80000001 Desktop color
vbActiveTitleBar &H80000002 Color of the title bar for the active window
vbInactiveTitleBar &H80000003 Color of the title bar for the inactive window
********
from help/system color constants
System Color Constants
The following constants can be used anywhere in your code in place of the actual values:
Constant Value Description
vbScrollBars 0x80000000 Scroll bar color
vbDesktop 0x80000001 Desktop color
vbActiveTitleBar 0x80000002 Color of the title bar for the active window
vbInactiveTitleBar 0x80000003 Color of the title bar for the inactive window
Can somebody please explain the difference between the numerical values i.e.
0x80000.... and &H80000.....
Why and what and where and Who :0) decieded on using different standards(?) for the hex(I asume) values?
------------------
On Error Goto Bed :0)
anders@zsystemdesign.se
From help/color constants
System Colors
Constant Value Description
vbScrollBars &H80000000 Scroll bar color
vbDesktop &H80000001 Desktop color
vbActiveTitleBar &H80000002 Color of the title bar for the active window
vbInactiveTitleBar &H80000003 Color of the title bar for the inactive window
********
from help/system color constants
System Color Constants
The following constants can be used anywhere in your code in place of the actual values:
Constant Value Description
vbScrollBars 0x80000000 Scroll bar color
vbDesktop 0x80000001 Desktop color
vbActiveTitleBar 0x80000002 Color of the title bar for the active window
vbInactiveTitleBar 0x80000003 Color of the title bar for the inactive window
Can somebody please explain the difference between the numerical values i.e.
0x80000.... and &H80000.....
Why and what and where and Who :0) decieded on using different standards(?) for the hex(I asume) values?
------------------
On Error Goto Bed :0)
anders@zsystemdesign.se