combo boxes with multiple choices

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I set up a combo box that allows multiple choices? I assume I then
process the choices using code...
 
Combo boxes do not allow multiple selections. To do that, you will need to
use a List Box. Then to determine which items were selected, use the
ItemsSelected collection. There is a good example of using ItemsSelected in
VBA Help.
 
That sounds promising, but I cannot find the ItemsSelected Collection in my
Access 2003 help file list of collections. Where else can I find "VBA Help"?
I've looked at the Microsoft site for a while, but not finding "VBA Help".

Thanks,
prairie smoke
 
I found an Access 2003 VBA download, downloaded it, and looked for
collections. The term was not even in the Glossary. Is there someplace else
I should be looking?

Thanks, prairie smoke
 
You probably wont find it in Access help.
Open your VBA editor and use Help there. Search for ItemsSelected
 

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