Multiple Selections

K

KT

I just want to know if it is possible for you to crate a list that you can
select one or more options. if so how??
 
P

Pat Hartman

You can use a listbox with its Multi Select property set to Simple or
Extended. If you want to store the selected values, you will need code to
so it since a listbox can only be bound if its MultiSelect property is set
to None. Remember, it is poor practice to store multiple values in a single
field so to store selected data, you really need to work with a many-side
table.
 
Top