Is there a direct Property to get to the count of selected items in a MultiSelect ListBox, or do I have to loop through their selected status like this (air code):
Private Sub lstMyList_Click()
Dim intC As Integer, intSel As Integer
With lstMyList
For intC = 1 To .ListCount
If .Selected(intC) Then intSel = intSel + 1
Next intC
If .ListCount = intSel Then
chkSelectAll = True
Else
chkSelectAll = False
End If
End With
End Sub