VB Code:
  1. Private Sub ListView1_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single)
  2.     Dim oItem As ListItem
  3.     If Button = vbRightButton Then
  4.         Set oItem = ListView1.HitTest(x, y)
  5.         If Not oItem Is Nothing Then
  6.             oItem.Selected = True
  7.             PopupMenu mnuPopup
  8.         End If
  9.        
  10.     Else
  11.         Text2.Text = ListView1.SelectedItem.ListSubItems.Item(1)
  12.     End If
  13. End Sub

Im trying to make the selected item appear in text2.txt, but it only appears when i double click it with left mouse click , how can i make it appear on a single click?