Dropdownlists are meant to allow user to select a single value. What you could do is cheat a little bit by displaying a ListBox on top of your combobox. To do that, capture the combobox dropdown event then call SuspendLayout of combobox, place dropdownlist on top, and call ResumeLayout of your combobox. When user is done selecting, hide the listbox.