tags:

views:

31

answers:

1

How can I determine what item was clicked on my ListBox?

+2  A: 
    if (yourListBoxName.SelectedIndex!=-1) {
      // do stuff with yourListBoxName.SelectedIndex
    }

Without very basic information on what you want to do, this is very basic.

Robert