All you need to do is put in a double click event on the List View. To find out which icon they clicked on, just use the .SelectedItem.Text property. If .SelectedItem.Text is "" then they have not selected anything, ie
Private Sub ListView1_DblClick()
Msgbox ListView1.SelectedItem.Text
End Sub