If current record is new record, grab the focus : Focus « Forms « VBA / Excel / Access / Word






If current record is new record, grab the focus

 
Private Sub Form_Current()
    If Me.NewRecord Then
        Me.txtContactFirstName.SetFocus
    End If
End Sub

 








Related examples in the same category