views:

192

answers:

1

Hi

I am looking for way to implement multi selection enabled list box in windows forms C#. Any suggestions? Thanks.

+3  A: 

Just add a ListBox control and set the Property: "SelectionMode = MultiExtended"

Then you can get the selected items in: ListBox1.SelectedItems

Burnsys
Got it thanks a lot
SonOfOmer