use this to access to selected item from a list box.
string item = listBox1.SelectedIndex.ToString();
if selectionMode is MultipleSimple or MultipleExtended you can use this to get a collection of the selected items.
string items = listBox1.SelectedItems;
|