How do I create a list box in Access that will allow me to make m.

J

joberg007

I need to be able to make more then one selection from a list box. How do I
create a list box that will allow me to make multible selections?
 
S

Shaun Beane

You'll just need to change to multi-select property of your list box
("other" tab in the properties window) to either simple or extended.
Simple allows you to select multiple items without using your control key.
 
H

Hank Stalica

Shaun said:
You'll just need to change to multi-select property of your list box
("other" tab in the properties window) to either simple or extended.
Simple allows you to select multiple items without using your control key.

Don't forget, he'll also have to write some VB code to access the array
those values get stored in.
 
Top