I\'m facing a little problem I can\'t seem to solve. The problem is in an WinForm I have several containers (TabControls, Panels, ...).
The Tab-order within the controls
You could work with the Leave event of that Control, and manually set focus in the code behind to do this.
private void textBox1_Leave(object sender, System.EventArgs e) { textBox2.Focus(); }