Set the Data Entry property of the form to Yes.

Signature
Lynn Trapp
MS Access MVP
www.ltcomputerdesigns.com
Access Security: www.ltcomputerdesigns.com/Security.htm
Jeff Conrad's Big List: www.ltcomputerdesigns.com/JCReferences.html
> Not sure what happened. Was set to go right to new record entry with
> autonumber when opening form.
[quoted text clipped - 4 lines]
> view?
> Thanks
Thanks. Worked. Guess it was changed accidently.
> Set the Data Entry property of the form to Yes.
>
[quoted text clipped - 6 lines]
> > view?
> > Thanks
Hmm. When set to that, now I cannot cycle thru exisitng records as well.
Allow edits, and additions is enabled as well.
> Set the Data Entry property of the form to Yes.
>
[quoted text clipped - 6 lines]
> > view?
> > Thanks
Lynn Trapp - 02 May 2005 19:26 GMT
The add the following to the Open event of your form
Private Sub Form_Open(Cancel As Integer)
DoCmd.GoToRecord , , acNewRec
End Sub

Signature
Lynn Trapp
MS Access MVP
www.ltcomputerdesigns.com
Access Security: www.ltcomputerdesigns.com/Security.htm
Jeff Conrad's Big List: www.ltcomputerdesigns.com/JCReferences.html
> Hmm. When set to that, now I cannot cycle thru exisitng records as well.
> Allow edits, and additions is enabled as well.
[quoted text clipped - 10 lines]
>> > view?
>> > Thanks
John Vinson - 02 May 2005 19:35 GMT
>Hmm. When set to that, now I cannot cycle thru exisitng records as well.
>Allow edits, and additions is enabled as well.
I don't like Data Entry mode for this very reason. Sometimes you want
to default to the new record but still have the ability to go back.
Try putting code in the Form's Activate event:
DoCmd.GoToRecord acNewRecord
When you open the form, or navigate back to it from another form, this
will go to the new record.
John W. Vinson[MVP]