hi all i'm trying to perform an action once the user double clicks on an item in the listview.
but there doesnt appear to be any methods available for this. can anybody please help me out here?
thanks lots :D
ANSWER (Thanks to Kyle's link):
private void listView1_MouseDoubleClick(object sender, MouseEventArgs e)
{
if (listView1.Items.Count >= 1)
Process.Start(listView1.SelectedItems[0].Text);
}