I am using a listbox that requires multiple selections. However when the multiple select is enabled the click event for the listbox stops working.

When one of the items in the listbox is clicked on I need a text box to appear.

This is the code i am using for the click event:

Private Sub lbxReason_Click()
If left(lbxReason.Text, 1) = "T" Then
lblSpecifyReason.Visible = True
tbxOtherReason.Visible = True
Else
lblSpecifyReason.Visible = False
tbxOtherReason.Visible = False
End If
End Sub

but when you click, it doesn't even go into this.

Any help would be appreciated.