Missing Property for Multi Select List Box Control

  • Thread starter Thread starter Michelle Dueitt
  • Start date Start date
M

Michelle Dueitt

I have a form that has a combo box which I would like to
enable with Multi-Select capabilities. However, I do not
have a Multi-Select Property Choice where I should be able
to note "Simple or Extended"

I am assuming that I need to activate a control, but I
can't figure out how.

Any help would be greatly appreciated.

Thanks,
Michelle
 
Hi,


A combo box? try a list box. A combo box allow only one single choice,
as far as I know.


Hoping it may help,
Vanderghast, Access MVP
 
I have been trying to figure that out also. I put fields
in from each combo box seletion in my table so the
selection would have a place to go, but I dont know how to
make my combo box selection go there. Let me know if you
figure it out thanks and i will do the same
 
I have been trying to figure that out also. I put fields
in from each combo box seletion in my table so the
selection would have a place to go, but I dont know how to
make my combo box selection go there. Let me know if you
figure it out thanks and i will do the same

Combo Boxes do not support Multiselect - Listboxes do.

You will need some VBA code to move data from a multiselect listbox
into a table, and if you're thinking of putting multiple values into
one field, DON'T - you may need to have another table related one to
many to your current table.
 
Back
Top