Cool Color Selector Including Hue, Saturation, and Lumination | CodeGuru

Cool Color Selector Including Hue, Saturation, and Lumination

Environment: VC6, VC7.NET, WinXP, Win2000, Win98, NT4 SP3 When I created this color selector, I was creating a 3D graphics program. I was using the standard Windows common color selection dialog box. However, it became a bit tedious selecting the “Define Custom Colors >>” button to select custom colors. So, I designed this color selector. […]

Written By
CodeGuru Staff
CodeGuru Staff
Feb 19, 2004
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Environment: VC6, VC7.NET, WinXP, Win2000, Win98, NT4 SP3

When I created this color selector, I was creating a 3D graphics program. I was using the standard Windows common color selection dialog box. However, it became a bit tedious selecting the “Define Custom Colors >>” button to select custom colors. So, I designed this color selector. I find it much easier to use. All color boxes can be dragged and dropped onto the custom color boxes. Custom color values are automatically restored each time the dialog box is displayed. The colors can all be dragged onto the “New Color:” box to select that color.

Clicking on the “Current Color:” color box will select the original color again. However, it is not possible (without modifications) to drag a color on top of the “Current Color:” color box because that would defeat the object of having it.

It is possible to change the color reference, hue value, saturation value, lumination value, red value, green value, and the blue value.

I hope that this is of some use to you.

// declare a variable to store our color
COLORREF rgbColor = RGB(255, 0, 0);
// create an instance of the color selector
CSelColorDlg dlgSelColor(GetRValue(rgbColor),
             GetGValue(rgbColor),
             GetBValue(rgbColor));
// display the color changing dialog box
if(dlgSelColor.DoModal() == IDOK)
{
  // select the new color
  rgbColor = dlgSelColor.GetColor();
  // change the background color
  Invalidate();
}

Downloads

Download demo project – 52 Kb

Download source – 10 Kb

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.