MultiSelect List box

  • Thread starter Thread starter debrian
  • Start date Start date
D

debrian

Guest
I have added a list box to an existing form with MultiSelect set to "simple". In the form I am allowed to select multipe items, however the results are not listed in the table I have specified. If a set multiselect to "none" it works fine. Any ideas? Do I need to fomat the column in the table differently? Any help is appreciated
 
Since you've changed the format of the List box to a Multi select, the .Value of the ListBox will always be null.

You can use two methods of retrieving the selected data.

1) By using the Selected property or,
2) By using the ItemsSelected property

Seach in the help file for the above two properties on how to use them to retrieve the selected data.

Hope this helps,
tc3of4
 

Users who are viewing this thread

Back
Top Bottom