Listview check items?

MrDeNNiS

Member
Joined
Dec 15, 2009
Messages
7
Programming Experience
1-3
Hello

if first and second columns items the same as more than 5 get message


Sorry for my bad English
 
Try something like
VB.NET:
Expand Collapse Copy
Dim Item as Listviewitem 

If Listview.Items.Find(Item.Name,False).Count >= 1 Then ' duplicates were found
     'if you want to display them, do so here (or delete them if you wish)
End If
 
Back
Top