My questions is simple but I can't figure it out! I have a listview area which take different pictures. When the user selects a picture I want to get the filename and use this to put the picture onto a large picture box. Can anybody tell me how to do this? The problem I am having is that I cannot convert the picture selected to a filename. I have tried:

private void listView1_SelectedIndexChanged(object sender, EventArgs e)
{
pictureBox1.Image = Image.FromFile(listView1.SelectedItems.ToString());
}

But I get the error:
System.IO.FileNotFoundException was unhandled
Message="System.Windows.Forms.ListView+SelectedListViewItemCollection"

Any help would be greatly apprieciated! Thanks

Depesh