Multi-select drop menu

  • Thread starter Thread starter Greg Staley
  • Start date Start date
G

Greg Staley

I need to create a drop menu where people can select multiple choices. I
made a drop list where 1 choice can be selected, how do I make it where multiple
can?

Greg Staley
The Oft Access Confused
 
Greg Staley said:
I need to create a drop menu where people can select multiple choices. I
made a drop list where 1 choice can be selected, how do I make it where multiple
can?

You can't. ListBoxes support this feature, ComboBoxes don't. You could fake it by
writing each selection as it is made to another control or into a variable, but it
could get messy if the user needs to change his mind.
 
Back
Top