Thanks for your response. If you have any further questions, feel free to write us
Regards
Thanks Mike and Georgi for the information and the suggestions (and for the prompt responses). I'll take a look at the AfterEnterEditMode and see if that might be an option for me.
John
Hi John,
The original (7.2) behavior you describe was a bug. The inbox TextBox control remembers the last SelectionStart and SelectionLength values that it had when the user left the control and restores those values when the user re-entered the control. So we fixed it to do what the TextBox does.
Georgi's code should work to get the old behavior back.
Hello John,
The difference between version 7.3 and 12.1 is huge. During these 5-6 years we made a lot of changes and improvements into our controls. Maybe one possible way to solve your task could be if you are using suitable event and SelectAll() method. For example:
private void ultraTextEditor2_AfterEnterEditMode(object sender, EventArgs e)
{
ultraTextEditor2.SelectAll();
}
Please take a look at the attached video file and if you have any questions, feel free to write me