How to save multiple selection from a list box in a bounded field

  • Thread starter Thread starter Lana69
  • Start date Start date
L

Lana69

I am trying to set list box control "lst_Services" in a form "frm_Producers"
which is bound to "Type_Sevrices" field in a table "Mapped_Producers". The
goal is to alow multi selection from a list box and store these in the table.
When I set MultiSelect property of the list box to Simple or Extended, the
stored value of the list box is Null.

How to solve this problem? Is this possible to do with list box control OR I
should take another control in consideration, and which one?
 
You can't store multiple values in one field. A MultiSelect list box will
only return null because the items are stored in a collection.

If you can describe what you are trying to accomplish, perhaps we can help
with the how to.
 
Back
Top