Can I allow two or more selections in a drop down list ?

  • Thread starter Thread starter Kavinga
  • Start date Start date
K

Kavinga

How can I allow 2 or more selections from a one drop down list..? PLease help
me.. Its urgent...
 
Combo boxes (the Access name for drop down lists) are limited to only
selecting one value. If you need multiselect, consider using a list box.
 
Combo boxes (the Access name for drop down lists) are limited to
only selecting one value. If you need multiselect, consider using
a list box.

If it's being used to select WHERE criteria, you could combine the
combo box with a text box, and add values to it separated by OR, and
then pass the contents of the OR clause through
Application.BuildCriteria() and end up with a proper WHERE clause
from it. I do this all the time on my query-by-form interfaces.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top