Sure disable all the other controls on the form's property sheet, then in
the AfterUpdate event of the control you want, re-enable them (aircode):
Sub txtMyControl_AfterUpdate()
Me.text2.Enabled = True
Me.text3.Enabled = True
Me.text4.Enabled = True
' etc.
End sub
You will need to also enable or lock, the next control in the tab order, or
you won't be able to move off of the focused control. I'd lock it, but
there's no visual cue if you do. If you choose to enable it, there's still
no visual cue, but you can write some code in the OnGotFocus or OnEnter
event to tell the user to go back and do the first control.