List box

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

Guest

Hi,

Can anyone let me know how to retrieve values of a list box in a form.

Can I store multiple selections of a list a box in a single column in a
table. If so, can I get some help on how to go about this.

Thanks in advance.
 
Hi,

Can anyone let me know how to retrieve values of a list box in a form.

Can I store multiple selections of a list a box in a single column in a
table. If so, can I get some help on how to go about this.

Thanks in advance.

There is code in VBA Help to read the selected items.
You'll have to adapt it to your needs.
See ItemsSelected Property
 
Strongly recommend against storing multiple values in a single record field
in your database. This question implies that you probably need a new table
that has a one-to-many relationship with some other table.

Dale
 
Back
Top