ComboBox click event

  • Thread starter Thread starter warbornster
  • Start date Start date
W

warbornster

I have a event that looks something like:

Sub ComboBox1_Click()
MsgBox "Testing"
End Sub

But the event doesn't fire, and Ive set the style to DropDownList. It
does work fine if I change the control to a commandbutton. something I
haven't thought about ? thanks beforehand.
 
If the control is bound to an OUtlook property, it won't fire a Click event. Use the item-level CustomPropertyChange event instead.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Back
Top