debrian
01-18-2001, 10:21 AM
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
tc3of4
01-18-2001, 11:59 AM
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