vote up 0 vote down star

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

can somebody give me a sample code snippet?

thanks in advance

flag

33% accept rate

1 Answer

vote up 3 vote down

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|flag
i want to display one by one value in listbox (selected values only) – Nagu Sep 1 at 12:45
@Nagu: And what problem are you running into? – Jon Skeet Sep 1 at 12:45
i want to display the value of list box selected value – Nagu Sep 1 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 at 12:48

Your Answer

Get an OpenID
or

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