Hi,
I'm trying to set the focus on the first control of my tab when user switches between tab. To do that, I'm using the eventhandler SelectedTabChanged and put something like that:
private
void
radTabbedFormControl1_SelectedTabChanged(
object
sender, EventArgs e)
{
textBox8.Focus();
}
But unfortunately, I can see that my control take the focus but immediatly lose it after.
Can you tell me how I can achieve that ? The final goal is to restore the focus state when the user is switching between tab, so he don't have to do an useless click with mouse to continue to work.
Thanks
Best Regards