D
DS
I'm using this code that works. Is there a better way to do this? It
checks 3 Listboxes and then acts accordingly.
Thanks
DS
Private Sub List66_Click()
Me.Text95 = 1
Dim I As Integer
For I = 0 To Me.List79.ListCount - 1
Me.List79.Selected(I) = False
Next I
For I = 0 To Me.List81.ListCount - 1
Me.List81.Selected(I) = False
Next I
For I = 0 To Me.List83.ListCount - 1
Me.List83.Selected(I) = False
Next I
End Sub
checks 3 Listboxes and then acts accordingly.
Thanks
DS
Private Sub List66_Click()
Me.Text95 = 1
Dim I As Integer
For I = 0 To Me.List79.ListCount - 1
Me.List79.Selected(I) = False
Next I
For I = 0 To Me.List81.ListCount - 1
Me.List81.Selected(I) = False
Next I
For I = 0 To Me.List83.ListCount - 1
Me.List83.Selected(I) = False
Next I
End Sub