I have got a list box in multi select mode which is data bound with 15 values from a database. I have this code to display the selected values of each item selected in the l
I came back to this issue and solved it by doing this:
foreach(int blah in multilistbox.SelectedIndices){ MessageBox.Show(blah.ToString()); }
Thanks for your help!