I have a textbox on my form. while I am changing the text but not finished yet, If I add event TextChanged then this event will raise during I am changing the text => this is not what I expect.
Second situation: instead of using TextChanged, I used text_Validated or text_Validating event, it works ONLY after my mouse pointer to another area than the textbox itself.
so, my question is how can I achieve in such a way that after changing the text without moving the pointer like the TextValidated behaviour, then the textbox event will raise.
I hope you can understand my current problem and give me an advice on how can I solve this problem.