> From the list box _Click event, how do you find out whether the item
> that was clicked has been selected or de-selected?
[quoted text clipped - 5 lines]
>
> End Sub
I had an idea, but I had to check it out. Here:
With Me.lstMyList
If .Selected(.ListIndex) Then
MsgBox "Selected"
Else
MsgBox "Unselected"
End If
End With

Signature
Dirk Goldgar, MS Access MVP
www.datagnostics.com
(please reply to the newsgroup)