Sean,
I am not the strongest VB user but have ventured into some simple stuff.
However, now that I am in Access 2007 when ever I open the code option box
all I see is the start and stop of the sub routine, no code between.
I have been afraid to mess around with it for fear of messing something up.
I have also made sure my databases are in a "Trusted Folder". Have you run
into this or am I just not hold my mouth right??
Thanks much,
--
Jacqueline
Beetle said:
Use the forms Current event instead.
Private Sub Form_Current
If Me.NewRecord Then Me![SomeControl].SetFocus
End Sub
--
_________
Sean Bailey
Jacqueline said:
Can someone explain the difference between these two events for me please? I
want to creat an event to move the cursor to the first input box on the form
when the user clicks the New Record button.
Thank you,