Use the form's Current event to run a macro that contains the GoToControl
action, and use that to set the focus to the desired field.

Signature
Ken Snell
<MS ACCESS MVP>
> Hi
>
[quoted text clipped - 4 lines]
> Thanks in advance
> Mark Thornblad
mthornblad@gmail.com - 16 Nov 2007 05:19 GMT
On Nov 15, 11:00 pm, "Ken Snell \(MVP\)"
<kthsneisll...@ncoomcastt.renaetl> wrote:
> Use the form's Current event to run a macro that contains the GoToControl
> action, and use that to set the focus to the desired field.
[quoted text clipped - 16 lines]
> > Thanks in advance
> > Mark Thornblad
Thanks so much Ken
I really appreciate your help. Just what I needed.
I have another question about a form/subform which I will make a new
post.
Thank again
Mark
Use the Current event procedure of the form to SetFocus to the field you
want, if it is at a new record.
Example:
Private Sub Form_Current()
If Me.NewRecord Then
Me.[SomeControlNameHere].SetFocus
End If
End Sub

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
> Hi
>
[quoted text clipped - 4 lines]
> Thanks in advance
> Mark Thornblad
mthornblad@gmail.com - 16 Nov 2007 05:21 GMT
On Nov 15, 11:00 pm, "Allen Browne" <AllenBro...@SeeSig.Invalid>
wrote:
> Use the Current event procedure of the form to SetFocus to the field you
> want, if it is at a new record.
[quoted text clipped - 24 lines]
> > Thanks in advance
> > Mark Thornblad
Thank you also Allen.