Hi, i'm trying to focus the cursor on a textbox inside one of my tab controls (3 tabs) but my method doesn't seem to work...Any ideas?
Here is my code:
private void Maintenance_Load(object sender, EventArgs e)
{
tabControl1.Focus();
tabControl1.SelectedIndex = 0;
txt_CLName.Focus();
}