The selectedItem of a list box is the Data Object you bind to that row:
YourDataObject data = Listbox.SelectedItem as YourDataObject;
if(data != null)
{
// now you have access to all the field to your data for that row. If you want to find the text displayed, you access the field that bound to the display UI control
}
Software Engineer
Aprimo, Inc
Please remember to mark the replies as answers if they answered your question