Click here to Skip to main content
15,884,176 members
Articles / Programming Languages / C++

A Multi-check ListBox

Rate me:
Please Sign up or sign in to vote.
4.25/5 (4 votes)
12 Dec 1999 157K   3.5K   38   12
Extends the CCheckListBox class to have multiple check box columns

Sample Image - multichecklistbox.jpg

I had a desire/requirement on a recent project to have a CCheckListbox class that allowed for more than one checkbox in front of the string. The 3-state style set by the CCheckListbox simply didn't do what I wanted or needed. I had a list of people who could fall into two different categories at the same time. The 3-state style told me that this person fell into one category, but I had to just know WHICH one.

So, I decided to write a class that extended the capabilities of the CCheckListbox. What I came up with was the CMultiCheckListBox class. What it does is add another checkbox in front of the original checkbox in the CCheckListbox implementation.

To use the class, follow these steps:

  • Add a member variable to the desired class (CDialog, CFormView, etc.)
    C++
    CMultiCheckListBox m_List;
  • Subclass the list box variable just created.
    void CCharityReportDlg::DoDataExchange(CDataExchange* pDX)
    {
        CDialog::DoDataExchange(pDX);
        //{{AFX_DATA_MAP(CCharityReportDlg)
        DDX_Control(pDX, IDC_LIST1, m_List);
        //}}AFX_DATA_MAP
    }
  • To set the first checkbox for listbox item nIndex, call SetCheck(nIndex, nCheck):
    C++
    m_List.SetCheck(nIndex,1);
  • To set the second checkbox, call SetMultiCheck(nIndex, nCheck):
    C++
    m_List.SetMultiCheck(nIndex,1);
  • To retrieve the checkbox state of the first checkbox, call GetCheck(nIndex):
    C++
    m_List.GetCheck(nIndex);
  • To retrieve the checkbox state of the second checkbox, call GetMultiCheck(nIndex):
    C++
    m_List.MultiGetCheck(nIndex);

History

  • 13th December, 1999: Initial version

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
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
General[Message Deleted] Pin
JAYRAJ GIRI17-Feb-09 1:54
JAYRAJ GIRI17-Feb-09 1:54 
GeneralRe: check box small example Pin
Christian Graus18-Feb-09 12:44
protectorChristian Graus18-Feb-09 12:44 
QuestionCan we have items with NO checkboxes? Pin
Gary Chapman23-May-06 5:47
Gary Chapman23-May-06 5:47 
AnswerRe: Can we have items with NO checkboxes? Pin
Harry J. Devine23-May-06 8:38
Harry J. Devine23-May-06 8:38 
GeneralDrawFrameControl Pin
Javi_26-Apr-05 9:01
Javi_26-Apr-05 9:01 
GeneralSample code Pin
Anonymous7-Feb-05 4:09
Anonymous7-Feb-05 4:09 
GeneralRe: Sample code Pin
Harry J. Devine7-Feb-05 10:39
Harry J. Devine7-Feb-05 10:39 
Generalmore than 2 checkboxes Pin
robert guy24-Oct-00 8:50
robert guy24-Oct-00 8:50 
General3D check boxes Pin
Jeremy Asbill3-Oct-00 10:12
sussJeremy Asbill3-Oct-00 10:12 
GeneralRe: 3D check boxes Pin
19-Dec-00 23:12
suss19-Dec-00 23:12 
GeneralAdd multiple columns in ListBox Pin
Member 20036119-Sep-00 23:45
Member 20036119-Sep-00 23:45 
GeneralRe: Add multiple columns in ListBox Pin
Harry Devine20-Sep-00 9:29
sussHarry Devine20-Sep-00 9:29 

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.