Multiple select combo box or list box?

  • Thread starter Thread starter JKlein
  • Start date Start date
Combo boxes do not support multi-select.

For list boxes, look at the Properties tab for the control, and you should
see a MultiSelect property. The default is None, but you can change that to
Simple (which means that multiple items can be selected or deselected by
clicking them with the mouse or pressing the SPACEBAR.) or Extended (which
means multiple items can be selected by holding down SHIFT and clicking them
with the mouse or by holding down SHIFT and pressing an arrow key to extend
the selection from the previously selected item to the current item. You can
also select items by dragging with the mouse. Holding down CTRL and clicking
an item selects or deselects that item.)
 
Probably should have also pointed out that multi-select list boxes cannot be
bound to a field.
 
Back
Top