Simple vs. Extended Multi Select List Box

N

Nanette

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?
 
K

Klatuu

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.
 
N

Nanette

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top