Use the Checked property of a ListView item
VB Code:
  1. Dim itm As ListItem
  2.  
  3. For Each itm In ListView1.ListItems
  4.     If itm.Checked = True Then
  5.         Debug.Print itm.Text & " is checked"
  6.     End If
  7. Next
Best regards