Well ... there are two ways you can do this. Once is to set your tab order (right click on the form in design mode and select tab order). When the form opens, it will automatically highlight the 1st control in the tab order sequence.
The second, as G37Sam said is to use the SetFocus method. On the Open event of the form, use Me.txtControlName.SetFocus.
HTH,
-dK