CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 1999
    Posts
    1

    Is there a CCheckComboBox Control - A drop down combo-box with a checkbox next to each item



    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

  2. #2
    Join Date
    Apr 1999
    Posts
    20

    Re: Is there a CCheckComboBox Control - A drop down combo-box with a checkbox next to each item



    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured