Simple vs. Extended Multi Select List Box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've looked in several places and can't find the definition of a Simple
Multi-select list box versus a extended multi-select list box.

Anyone know where I can find this info?
 
Copied from VBA Help from MultiSelect property:

The MultiSelect property uses the following settings.

Setting Visual Basic Description
None 0 (Default) Multiple selection isn't allowed.
Simple 1 Multiple items are selected or deselected by clicking them with the
mouse or pressing the SPACEBAR.
Extended 2 Multiple items are 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.
 
Thanks to both of you.
Klatuu said:
Copied from VBA Help from MultiSelect property:

The MultiSelect property uses the following settings.

Setting Visual Basic Description
None 0 (Default) Multiple selection isn't allowed.
Simple 1 Multiple items are selected or deselected by clicking them with the
mouse or pressing the SPACEBAR.
Extended 2 Multiple items are 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.
 
Back
Top