Hi!
I use the UltraCombo has a editor on a tree node. Then I subscribe to the ValueChanged event to do something with the value.
But when I leave the combo box, the valuechanged event is thrown even if I didn't change the value and the value is always null. So I always loose the value that I selected before.
I also tried to call my code only if combobox.Focused == true, but it is always false even if I have focused in the field.
I use UltraCombo 10.1.20101.1007. I also tried with 9.2. and it does the same problem.
Does anyone knows why ?
Best regards,
Benoit
Hi Mike!
Thanks a lot for the hint. I didn't have the idea to use the tree events instead of the editor events. It works fine now. I use the BeforeCellExitEditMode event on the tree to do what I want.
Hi Benoit,
If you are using the UltraCombo, or any control, as an Editor, then you cannot use the events of the editor contro, you have to use events of the tree to handle changes made in the tree.