I have a form that has a single table as it's control source. Upon opening to a new record the PrimaryKey field(Autonumbe r) populates without having entered any data. I have the following code in the form's OnLoad event.
I've checked all controls for a default value and none have any. There are also no default values defined in the table.
What could be causing this?
Thanks
Code:
If Not Me.NewRecord Then
DoCmd.GoToRecord , , acNewRec
End If
What could be causing this?
Thanks
Comment