Click here to Skip to main content
6,594,932 members and growing! (15,143 online)
Email Password   helpLost your password?
Desktop Development » Combo & List Boxes » ComboBox Controls     Intermediate

CheckComboBox Control

By Magnus Egelberg, Lundalogik

A combo box with check boxes.
VC6, MFC, Dev
Posted:24 Nov 1999
Views:268,524
Bookmarked:75 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
61 votes for this article.
Popularity: 8.53 Rating: 4.78 out of 5

1

2

3
7 votes, 20.6%
4
27 votes, 79.4%
5

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

About the Author

Magnus Egelberg, Lundalogik


Member

Location: Sweden Sweden

Other popular Combo & List Boxes articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 82 (Total in Forum: 82) (Refresh)FirstPrevNext
GeneralBug - before subclassing behavior PinmemberJohn5901:37 27 Aug '09  
GeneralExcellent control Pinmembersimbakid23:14 26 Mar '09  
Questioncombobox show only one item at dropdown Pinmemberrotalume7:16 17 Jan '09  
AnswerRe: combobox show only one item at dropdown Pinmemberrotalume19:55 18 Jan '09  
GeneralCan you give more explain? Pinmemberparadise of pig9:35 20 Oct '08  
GeneralCan't see the List after click on the combo box. Pinmembernankyu121:25 19 Oct '08  
GeneralRe: Can't see the List after click on the combo box. PinmemberMagnus Egelberg21:35 19 Oct '08  
GeneralRe: Can't see the List after click on the combo box. Pinmembernankyu122:05 19 Oct '08  
Generalwhere can i find a version written by c# Pinmemberlinzhuo23:10 25 Jun '08  
GeneralLicense Pinmemberlanreola7:12 26 Mar '08  
Generalhow to disable check box selection ? Pinmembermrgoos5:40 19 Aug '07  
QuestionTool tip for Combo contol Pinmembersajithomas23:52 21 Jun '07  
GeneralUsing CheckComboBox Pinmemberjives3:52 30 Apr '07  
GeneralWhy not CB_GETCOMBOBOXINFO? Pinmembertworca9:38 13 Apr '07  
GeneralRe: Why not CB_GETCOMBOBOXINFO? PinmemberMagnus Egelberg21:29 15 Apr '07  
GeneralRe: Why not CB_GETCOMBOBOXINFO? PinmemberNotre10:46 5 Nov '07  
Generalcombocheckbox Pinmemberdnldldrch14:21 6 Dec '06  
GeneralRe: combocheckbox PinmemberMagnus Egelberg23:53 6 Dec '06  
QuestionOn resizing the dropdown list does not show up Pinmemberhoc_ngo14:15 15 May '06  
GeneralBug PinmemberMarek Konopka4:37 14 Mar '06  
GeneralRe: Bug PinmemberMarek Konopka4:51 14 Mar '06  
Generalhow to change it to the dropdown style Pinmemberminibao3:52 6 Feb '06  
GeneralRe: how to change it to the dropdown style Pinmember.dan.g.15:51 9 Mar '06  
GeneralRe: how to change it to the dropdown style PinmemberMember 41175974:06 10 Nov '08  
GeneralMutiple selection in the drop-down list box Pinmemberlanreola12:05 31 Aug '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 24 Nov 1999
Editor: Smitha Vijayan
Copyright 1999 by Magnus Egelberg, Lundalogik
Everything else Copyright © CodeProject, 1999-2009
Web20 | Advertise on the Code Project