Will this work for you?

Dim cnt As Integer
ListView1.Checkboxes = True

For cnt = 1 To ListView1.ListItems.Count
ListView1.ListItems.Item(cnt).Checked = True
Next


That would work just fine if there was a property called Checked, but ListView1.ListItems.Item(cnt).Checked does not exist as a property. The above example is exactly how I would like to use it though.

Any other suggestions?