displaying listview result
I'm using this to get the selected item into a text box
textBox1.Text = Convert.ToString(listView1.SelectedItems[0]);
It's giving me this as a result in the textbox
ListViewItem: {SETUP.EXE}
All i need is the name of the file I dont need ListViewItem: { }
Any help would be greatly appreciated
Flip