View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
JLGWhiz[_2_] JLGWhiz[_2_] is offline
external usenet poster
 
Posts: 1,565
Default Looking for a Form Control that combines ComboBox and CheckBox

Why not just put a bunch of checkboxes on a UserForm. When it is time to
make the selections, show the UserForm. When the CheckBox is clicked to
make the selection, Unload the UserForm.




"Ayo" wrote in message
...
What I was loking for is in the ListBox property but not in the Combox
property. Thanks anyways, for the info. I have to figure out another way
to
accomplish what I was intending to do.

"slarbie" wrote:

What you're looking for is a combobox with the ListStyle property set to
"1 -
fmListStyleOption". See VBA help entry for ListStyle Property for more
detail on how to use it.

"Ayo" wrote:

I am looking for a form control that is essentially a combobox with
checkboxes embedded in it. When you click on the dropdown arrow of the
combobox, you get a list of items, each with a checkbox in front of it.
The
checkboxes makes multiple selection possible in the combobox.