Hello,
I have some issues setting the focus to a textbox after the form loaded. I tried setting the focus in the form activated event, but the focus won`t be given to the textbox. It seems like the form is still at work with the WinTab Control when the activated event is fired. After the complete load the first tab got the focus. Is there another event on the form that will fire after everything is finished? Or is there a workaround to set the focus when using the WinTab control?
Thanks,
Stefan
I solved the problem by myself. When I call myTextBox.Select() instead of myTextBox.Focus() is just works fine..