What is the point of this? If you want to control which which control gets the focus when a form opens, you can alter the tab order. Start by opening the form in design view. Go to the tab order dialog and click the auto order button. This might fix your problem if the first physical field is the one you want to get the focus. Otherwise, if you don't want to change the order of the fields on the form but you want the fourth field to be the one to get the focus, Open the properties of that control and set the tab order to 1. Now this field is out of order. The tab order of the controls will be 2, 3, 4, 1, 5, 6, 7. So, focus starts in the fourth control. When you tab, focus goes to the first control on the form because it is the next control in the tab order. The tab moves through controls based on the value in the tab order field. Sometimes, we never want the user to be able to change particular fields. You can set the tab stop of those fields to No. If you do that to the first three fields, you don't have to change the value of the fourth fields tab order property at all. 1, 2, 3, are locked so focus automatically starts at 4.