On of the most often asked questions about is how to move the focus from one tab to another. The easiest way to do this is to simply set the focus to the first control on the target tab as in Me!SomeControl.SetFocus. If you want to make your form keyboard friendly (i.e. so the user can simply hit the tab key and move between tabs on the form you can use the On Key Down event of the last control on a tab to set the focus to the next tab. Here's the code: