HI all
When i use UltraTextEditor TextChanged Event, There is a little problem. i just input a char,the event will fire.Such as i want to input 'China' ,when i input the 'C', the event will fire.But i want that after i input the whole word. I use the 'leave' event instead, but no matter the word is changed or not ,the event will fire. Is anyother event suitable for my case.!
Thanks
There's no event that will only fire when the data has changed. Perhaps what you should do is use the Enter event on the control to record the original value. Then in the Validating event, you can check if the value has changed and if so, validate the next value.