Hi ng
Is there an Event in the Combobox that is fired even if the user
changes the selected item or if the selected item is changed by code?
What i wanna do is having one place where i can track if the program
changes the selection or the user changes the selected row in a
ComboBox.
Thank you
Adrian
Carl Rapson - 20 Mar 2007 16:21 GMT
Events only fire in response to user-initiated actions (mouse clicks, etc).
If you change the selection programmatically you have to call the
appropriate combo box event yourself. Something like:
Me.cboComboBox = "Test"
Call cboComboBox_AfterUpdate
Carl Rapson
> Hi ng
>
[quoted text clipped - 7 lines]
> Thank you
> Adrian