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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top