getting selected values from multiselect listbox

  • Thread starter Thread starter Mike P
  • Start date Start date
...
How do I get the values selected from a multiselect listbox?

this.listBox1.SelectedItems;

and

this.listBox1.SelectedIndices;

returns collections, through which you can iterate, etc.


// Bjorn A
 
Back
Top