tags:

views:

1319

answers:

1

In .NET there doesn't seem to be a property to find the item just selected in a multi-select listbox; SelectedIndex always shows the first selected item. From memory VB6 had the ListIndex property that changed accordingly... Why remove a useful property ?!

Duplicate: How to get the last selected item in multiselect ListBox?

+1  A: 

Create your own listbox that enherits from listbox and overrride the onclick?

PoweRoy