up vote 0 down vote favorite
share [g+] share [fb]

Hi how to display seleted item values in multi selected listbox using winforms.

can somebody give me a sample code snippet?

thanks in advance

link|improve this question

30% accept rate
feedback

1 Answer

Does ListBox.SelectedItems not do what you want?

for (object x in listBox.SelectedItems)
{
    // Do something with the selected item
}

You can also use ListBox.SelectedIndices.

link|improve this answer
i want to display one by one value in listbox (selected values only) – Nagu Sep 1 '09 at 12:45
@Nagu: And what problem are you running into? – Jon Skeet Sep 1 '09 at 12:45
i want to display the value of list box selected value – Nagu Sep 1 '09 at 12:47
@Nagu: Right, so I've given an example which gives you the selected value... what problem are you having? – Jon Skeet Sep 1 '09 at 12:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.