Click here to Skip to main content
15,881,381 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.4K   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

 
GeneralCan't see the List after click on the combo box. Pin
nankyu119-Oct-08 20:25
nankyu119-Oct-08 20:25 
GeneralRe: Can't see the List after click on the combo box. Pin
Magnus Egelberg19-Oct-08 20:35
Magnus Egelberg19-Oct-08 20:35 
GeneralRe: Can't see the List after click on the combo box. Pin
nankyu119-Oct-08 21:05
nankyu119-Oct-08 21:05 
GeneralRe: Can't see the List after click on the combo box. Pin
Martin Chapman20-Jan-10 17:20
Martin Chapman20-Jan-10 17:20 
GeneralRe: Can't see the List after click on the combo box. Pin
Martin Chapman20-Jan-10 17:27
Martin Chapman20-Jan-10 17:27 
GeneralRe: Can't see the List after click on the combo box. Pin
alex agger20-Jun-13 22:13
alex agger20-Jun-13 22:13 
GeneralRe: Can't see the List after click on the combo box. Pin
Anurag Daware29-May-15 1:51
Anurag Daware29-May-15 1:51 
Generalwhere can i find a version written by c# Pin
linzhuo25-Jun-08 22:10
linzhuo25-Jun-08 22:10 
GeneralLicense Pin
lanreola26-Mar-08 6:12
lanreola26-Mar-08 6:12 
QuestionRe: License Pin
Scott Bartine6-Dec-11 10:11
Scott Bartine6-Dec-11 10:11 
Questionhow to disable check box selection ? Pin
mrgoos19-Aug-07 4:40
mrgoos19-Aug-07 4:40 
QuestionTool tip for Combo contol Pin
sajithomas21-Jun-07 22:52
sajithomas21-Jun-07 22:52 
GeneralUsing CheckComboBox Pin
jives30-Apr-07 2:52
jives30-Apr-07 2:52 
QuestionWhy not CB_GETCOMBOBOXINFO? Pin
tworca13-Apr-07 8:38
tworca13-Apr-07 8:38 
AnswerRe: Why not CB_GETCOMBOBOXINFO? Pin
Magnus Egelberg15-Apr-07 20:29
Magnus Egelberg15-Apr-07 20:29 
GeneralRe: Why not CB_GETCOMBOBOXINFO? Pin
Notre5-Nov-07 9:46
Notre5-Nov-07 9:46 
Generalcombocheckbox Pin
dnldldrch6-Dec-06 13:21
dnldldrch6-Dec-06 13:21 
GeneralRe: combocheckbox Pin
Magnus Egelberg6-Dec-06 22:53
Magnus Egelberg6-Dec-06 22:53 
QuestionOn resizing the dropdown list does not show up Pin
hoc_ngo15-May-06 13:15
hoc_ngo15-May-06 13:15 
GeneralBug Pin
Marek Konopka14-Mar-06 3:37
Marek Konopka14-Mar-06 3:37 
GeneralRe: Bug Pin
Marek Konopka14-Mar-06 3:51
Marek Konopka14-Mar-06 3:51 
Questionhow to change it to the dropdown style Pin
minibao6-Feb-06 2:52
minibao6-Feb-06 2:52 
AnswerRe: how to change it to the dropdown style Pin
.dan.g.9-Mar-06 14:51
professional.dan.g.9-Mar-06 14:51 
GeneralRe: how to change it to the dropdown style Pin
timobile7610-Nov-08 3:06
timobile7610-Nov-08 3:06 
GeneralMutiple selection in the drop-down list box Pin
lanreola31-Aug-05 11:05
lanreola31-Aug-05 11:05 

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.