multiple selections from list

  • Thread starter Thread starter Stuart Harden
  • Start date Start date
S

Stuart Harden

I need in my form to select multiple items from a list (perhaps like online
forms where one uses "ctrl-click" to select multiple options) but cannot
seem to accomplish this.

I considered placing several drop-down combo boxes drawing from the same
list with the potential for a null value, but that makes the form too busy
or sloppy.

Any suggestions greatly appreciated-

Regards,

Stuart
(e-mail address removed)
 
You can select multiple items by selecting them one at a time and adding a
record into another table, or if it is for selection criteria for a query
(like an In clause), you can use a multi-select list box. To do that, set
the MultiSelect property on the Other tab of the property sheet for that
list box.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access Downloads
http://www.datastrat.com
http://www.mvps.org/access
 
Back
Top