Hi there,
i have got the problem that the UltraTextEditor does not receive the Input Focus when calling the Focus() Method.
First of all, i set the UltraTextEditor as Active Control and after that i call the Focus() Method.
Then the UltraTextEditor is Active but does not have the Input Focus.
When i switch to an other open window and return back to my window with the UltraTextEditor, it receives automatic the Input Focus.
Does anyone have an idea?
Thank you.
In what event are you calling the Focus method? Focus() will not work for any control inside events that occur before the form is shown. So that includes Form_Load.
i tried to call it in Load and Shown Event of the Form.
Every Time i checked the CanFocus Property, it was False.