Hi,
I have an UltraCombo.
I want to do something whenever the selection was changed.
Problem is, that UltraCombo doesn't have this event.
ValueChange event occures even if I didn't change the selection, so it doesn't help.
Which event can I use instead?
Thanks a lot,Yael
ValueChanged only fires when the value of the Combo changes. So this will fire when you select an item from the list or if the user types something into the edit portion of the control.
There's no way to distinguish between a user changing the value via selection or via typing.
It's good that the event will fire when selecting an item or when the user types something.
Problem is, that the event fires also when the ultra combo is initialized. In this case I don't want the event to fire.Do you have an idea why does it happen?
Thanks,Yael