combo boxes with multiple choices

P

prairie smoke

How can I set up a combo box that allows multiple choices? I assume I then
process the choices using code...
 
K

Klatuu

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.
 
P

prairie smoke

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
 
P

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
 
K

Klatuu

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