how can I select MULTIPLE CHOICES from a drop-down menu

  • Thread starter Thread starter Guest
  • Start date Start date
You can't. You use a list box set to mult-select, not a combo-box (aka drop
down box).

--Steve Huff
 
"Captain Feathersword" <Captain (e-mail address removed)>
wrote in message

Whether you use a combo box or a list box, you can't actually bind the
control so that multiple choices are automatically stored in a single
field. What you can do is use code to trap each selection as it is made
and store it someplace else -- normally as a new record in a related
table.
 
Dirk Goldgar said:
"Captain Feathersword" <Captain (e-mail address removed)>
wrote in message

Whether you use a combo box or a list box, you can't actually bind the
control so that multiple choices are automatically stored in a single
field. What you can do is use code to trap each selection as it is made
and store it someplace else -- normally as a new record in a related
table.

Hmmm... you can pass an array to the listbox function and retrieve
multiple selections in that array. Then do your program logic.

But a drop down can never work that way.


Dr. Know
 

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