List Box Multi Select??

  • Thread starter Thread starter Robbie Baquiran
  • Start date Start date
R

Robbie Baquiran

How do I retrieve the value of a listbox set to Multi Select? When it is
set to none, it provides me with the value of the bound column. When set to
either simple or extended - it returns Null.

The Help files aren't shedding any light on the situation.

Thanks in advance!
 
Robbie said:
How do I retrieve the value of a listbox set to Multi Select? When
it is set to none, it provides me with the value of the bound column.
When set to either simple or extended - it returns Null.

The Help files aren't shedding any light on the situation.

Thanks in advance!

There is an ItemsSelected collection that you have to loop through in code.

A MultiSelect ListBox is not intended to use to enter data into a table in the
same way that a ListBox with MultiSelect disabled is.
 
Thanks Rick ^^v


Rick Brandt said:
There is an ItemsSelected collection that you have to loop through in
code.

A MultiSelect ListBox is not intended to use to enter data into a table in
the same way that a ListBox with MultiSelect disabled is.
 
Back
Top