Hi how to display seleted item values in multi selected listbox using winforms.
can somebody give me a sample code snippet?
thanks in advance
Does ListBox.SelectedItems not do what you want?
ListBox.SelectedItems
for (object x in listBox.SelectedItems) { // Do something with the selected item }
You can also use ListBox.SelectedIndices.
ListBox.SelectedIndices
Stack Overflow is a collaboratively edited question and answer site for programmers – regardless of platform or language. It's 100% free, no registration required.
about » faq »
tagged
asked
2 months ago
viewed
142 times
latest activity