Is there a listView property which returns the number of checked items in a listview list?
I was going to do it like this but I wondereed if there was already a property.
(I'm sur I can't find it if there is!)
Code:Dim SelectedCount As Integer Dim i as Integer For i = 1 To ListView1.ListItems.Count If ListView1.ListItems(i).Checked Then SelectedCount = SelectedCount + 1 End If Next i




Reply With Quote