Choosing more than 1 item from a drop down list

D

dchristo

I want to choose more than I item from a drop down list, can someone tell me
how to accomplish this?

Thanks
 
W

Wayne Morgan

A combo box will only allow you to select one item at a time. You can select
one item at a time and concatenate them together in a textbox if you want,
but you may find a List Box a better solution. Set the multiselect property
of the listbox to Extended or Simple to select more than one item in the
list at a time.
 
O

Ofer

You can't choose more then one item from a drop down list, but you can use a
list box with a multiple selection set to true.

But remember that you can't save in a field in a table more then one value
that is selected.
 
Top