Click here to Skip to main content
15,884,099 members
Articles / Desktop Programming / MFC
Article

CheckComboBox Control

Rate me:
Please Sign up or sign in to vote.
4.81/5 (55 votes)
24 Nov 19992 min read 516.9K   15.8K   121   109
A combo box with check boxes.

Sample Image

Introduction

What does a CheckComboBox control do? A combo box has always been a way of selecting one item from a list of several. If you need to select one or more items, you have to either use a multiple selection listbox or use the MFC's CCheckListBox. The only problem is that it takes up space in your dialog or form. What you need is a CCheckComboBox!

When I started to develop the control, I was planning to design a composite control consisting of a static control along with a small button. When clicking the button, a popup window would be displayed where the user could select or unselect the items. The problem was that it took too much code to implement. I wanted the look and feel just like a standard combo box and that was not possible with a reasonable amount of code.

So I decided to subclass the combo box. A problem when subclassing the combo box is that you have no window handle to the list portion of the combo box that you may subclass. You only have the combo box window handle and that doesn't help.

The trick is to listen to the WM_CTLCOLORLISTBOX message. When the WM_CTLCOLORLISTBOX message is sent, lParam contains the window handle of the list box. This is the time to do the subclassing.

The code below shows how this is done:

BEGIN_MESSAGE_MAP(CCheckComboBox, CComboBox)
    ...
    ON_MESSAGE(WM_CTLCOLORLISTBOX, OnCtlColorListBox)
    ...
END_MESSAGE_MAP()

...
LRESULT CCheckComboBox::OnCtlColorListBox(WPARAM wParam, LPARAM lParam) 
{
    // If the listbox hasn't been subclassed yet, do so...
    if (m_hListBox == 0) {
        HWND hWnd = (HWND)lParam;

        if (hWnd != 0 && hWnd != m_hWnd) {
           // Save the listbox handle
           m_hListBox = hWnd;

           // Do the subclassing
           m_pWndProc = (WNDPROC)GetWindowLong(m_hListBox, GWL_WNDPROC);
           SetWindowLong(m_hListBox, GWL_WNDPROC, (LONG)ComboBoxListBoxProc);
        }
    }


    return DefWindowProc(WM_CTLCOLORLISTBOX, wParam, lParam);
}

After this is done, the rest is fairly straight forward. The ComboBoxListBoxProc() routine takes care of selecting/unselecting items and key down events. The overridden DrawItem() routine draws both the list items and the static portion of the combo box. If it is an item, it draws a checkmark followed by the text. If it is the static portion, it draws the text from all selected items separated by the standard list separator.

Please note that the CCheckComboBox must be created with the CBS_DROPDOWNLIST and the CBS_OWNERDRAWVARIABLE styles set. Also the CBS_HASSTRINGS style must be specified since I let the combo box handle the item strings (sorting etc.).

Since the check mark information is stored in the combo box item data, this may not be used by the application. Setting it to zero unselects the item otherwise it selects the item. But use the GetCheck() and SetCheck() routines instead since they handle redrawing correctly. If you need your own item data, you must implement this yourself.

It is easy to use this control since it is derived from the MFC CComboBox. Add CheckComboBox.h and CheckComboBox.cpp to your project and use it as a standard CComboBox. When used inside a dialog, simply select the category "Control" and variable type "CCheckComboBox" under the "Member Variables" page of the Class Wizard. This will declare a member variable in your dialog of type CCheckComboBox ready for you to use.

Well, I hope someone finds this useful. At least I did.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Sweden Sweden
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: Mutiple selection in the drop-down list box Pin
.dan.g.9-Mar-06 14:58
professional.dan.g.9-Mar-06 14:58 
GeneralFlat Checkbox Pin
Rafal Glowinski19-Jul-04 8:03
Rafal Glowinski19-Jul-04 8:03 
GeneralThis is just what I need Pin
rockonedge5-Feb-04 19:29
rockonedge5-Feb-04 19:29 
Generalondropdown event Pin
GAOFENG00712-Nov-03 16:05
GAOFENG00712-Nov-03 16:05 
QuestionWinCE? Pin
ajhuddy5-Sep-03 18:32
ajhuddy5-Sep-03 18:32 
AnswerRe: WinCE? Pin
João Paulo Figueira2-Oct-03 0:13
professionalJoão Paulo Figueira2-Oct-03 0:13 
GeneralRe: WinCE? Pin
ajhuddy2-Oct-03 5:11
ajhuddy2-Oct-03 5:11 
GeneralRe: WinCE? Pin
João Paulo Figueira7-Oct-03 10:21
professionalJoão Paulo Figueira7-Oct-03 10:21 
GeneralLicense Pin
stevev69-Apr-03 3:54
stevev69-Apr-03 3:54 
GeneralRe: License Pin
narm gadiraju28-Aug-03 9:08
narm gadiraju28-Aug-03 9:08 
GeneralRe: License Pin
Magnus Egelberg28-Aug-03 21:20
Magnus Egelberg28-Aug-03 21:20 
GeneralRe: License Pin
Code-X5-Nov-03 12:02
Code-X5-Nov-03 12:02 
GeneralRe: License Pin
Anton Heidelwalder10-Nov-04 2:05
Anton Heidelwalder10-Nov-04 2:05 
GeneralRe: License Pin
dheeraj_14-Jul-16 18:48
dheeraj_14-Jul-16 18:48 
GeneralLittle cosmetic bug Pin
Oskar Wieland9-Feb-03 6:34
Oskar Wieland9-Feb-03 6:34 
GeneralFirst item drawn in static part!! Pin
Stefan Dahlin7-Feb-03 13:35
Stefan Dahlin7-Feb-03 13:35 
GeneralRe: First item drawn in static part!! Pin
Stefan Dahlin12-Feb-03 4:19
Stefan Dahlin12-Feb-03 4:19 
QuestionWhich item is being selected? Pin
Stefan Dahlin1-Feb-03 14:44
Stefan Dahlin1-Feb-03 14:44 
GeneralAn alternate (and transparent) method Pin
Miszou28-Jan-03 12:17
Miszou28-Jan-03 12:17 
GeneralProbably broken when CBS_SORT is used Pin
Qlone6-Dec-05 0:11
Qlone6-Dec-05 0:11 
GeneralCheckComboBox in VB.NET Pin
Acid27-Sep-02 6:36
Acid27-Sep-02 6:36 
GeneralMe too !! Pin
Bernhard Hofmann5-Feb-03 5:11
Bernhard Hofmann5-Feb-03 5:11 
GeneralRe: Me too !! Pin
Anonymous20-Nov-03 22:28
Anonymous20-Nov-03 22:28 
GeneralRe: CheckComboBox in VB.NET Pin
zhoulhh5-Sep-03 9:04
zhoulhh5-Sep-03 9:04 
GeneralRe: CheckComboBox in VB.NET Pin
topofthe5-Mar-04 3:47
topofthe5-Mar-04 3:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.