combobox more than one selection

  • Thread starter Thread starter eb1mom
  • Start date Start date
E

eb1mom

Is it possible to pick more than one selection from a
single combobox? Perhaps have selections appear in a single
text box with comma between?
 
Combo boxes allow only a single selection; to get multiple selections, you
would need to use a ListBox.

Regarding having multiple items of data stored in a single textbox/field,
this is rarely ever a good idea, as you would come to find out when
attempting to query these fields.
 
Thanks Cheryl, I was planning on having the picks from the
combobox display in an unbound text box for viewing only. A
list box sounds much better. thanks
 
Back
Top