VB6 Finding the RGB values of a color ShowVB6 Finding the RGB values of a color
Dim R as integer
Dim G as integer
Dim B as integer
Sub FindRGB(Col As Long)
R = &HFF& And Col
G = (&HFF00& And Col ) \ 256
B = (&HFF0000 And Col ) \ 65536
End Sub
Note: Here...
RGB/HSL/CYMK Conversion ShowRGB/HSL/CYMK Conversion
There are various ways to categorize colors. The term color space is commonly used.
RGB (Red, Green, and Blue) is considered to be the native computer color space and is used for displaying images on screen....
[Cooling system] Choosing a fan Show[Cooling system] Choosing a fan
Why adding a fan or changing it?
How many fans?
Openings
Points to consider
You want to change the fan on your desktop PC or add one, here to compare features to make the right choice.
The fan is an...
RGB coding ShowRGB coding
The RGB coding (Red, Geen, Blue), developed in 1931 by the International Lighting Commission (Commission Internationale de l'Eclairage, CIE) consists in representing the colour space with three monochromatic rays, with the following...