Multiple Selections from ComboBox

R

Roy Lasris

Listboxes allow the option of selectino multiple items from the list.
ComboBoxes seem not to. Is there an option that I am missing, or a workaround?

Thanks,

Roy
 
M

Malcolm Smith

Roy,

If you think about it; if you were able to select more than item in a
combo box then where would the selections be listed when there's only room
in the control's text box for one selection?

- Malc
www.dragondrop.com
 
P

Peter Hewett

Hi Roy Lasris

Only the ListBox control has a MultiSelect and Selected property. A ComboBox is
inherently a single choice control. It displays whatever you manually or programmatically
select from the list or set the Text property to.

HTH + Cheers - Peter


[email protected] (Roy Lasris), said:
 
Top