Ben Sahmsian
March 31st, 1999, 12:15 PM
The subject says it all. I am looking for a cambo-box with a
checkkbox next to each item. I Know MFC has a CCheckListBox
but I could not find a CCheckComboBox.
Thanks
Ben
Kevin Delgado
March 31st, 1999, 12:52 PM
MFC doesn't have anything directly like you want. Stingray has something similar in thier Objective Grid. If you have that you can look at the source code to see what they do.
Also, keep in mind that a combobox is simply made up of two controls: a listbox and an edit control. It may be possible for you to get ahold of the child listbox control and subclass it (in your own derived combobox class) with the CCheckListBox. It will require some work.