I'm trying to add a CommandBarComboBox to a custom command bar, and the command bar adds and populates fine, however i can't get it to fire its change event
VB Code:
  1. 'cbrCmdBar is my command bar
  2. 'commandbareventclass handles all the command bar events
  3. Dim cBarCombo As CommandBarComboBox
  4. Set cBarCombo = cbrCmdBar.Controls.Add(msoControlDropdown)
  5. Set CommandBarEventClass.cBarBoxNavigation = cBarCombo
  6.  
  7. 'CommandBarEventClass code is below
  8.  
  9. Public WithEvents cBarBoxNavigation As CommandBarComboBox
  10.  
  11.  
  12. Public Sub cBarBoxNavigation_Change(ByVal Ctrl As Office.CommandBarComboBox)
  13.      msgBox "event fired"
  14. End Sub

the event is not fired on teh change. I've used the same method to make command bar buttons and they work fine...so whats the deal with the combo box?? any help would be great, thanks