Code:
private void lstCommands_SelectedIndexChanged(object sender, System.EventArgs e)
{}
When a user clicks an item in the list box, I want to save certain items that users have entered while one item has been selected; however, when I look at the Selected Index of the listbox on SelectedIndexChanged, all the values have already gone to the new one. How can I get the old values?

Dan