J
Jack
Hi,
I am trying to add records in a form using standard code:
Private Sub Command29_Click()
On Error GoTo Err_Command29_Click
DoCmd.GoToRecord , , acNewRec
Exit_Command29_Click:
Exit Sub
Err_Command29_Click:
MsgBox Err.Description
Resume Exit_Command29_Click
End Sub
However, when I try to add record it gives the following error:
You can't go to specific record
This prevents me from getting the add button functional.
Any help is appreciated. Thanks
I am trying to add records in a form using standard code:
Private Sub Command29_Click()
On Error GoTo Err_Command29_Click
DoCmd.GoToRecord , , acNewRec
Exit_Command29_Click:
Exit Sub
Err_Command29_Click:
MsgBox Err.Description
Resume Exit_Command29_Click
End Sub
However, when I try to add record it gives the following error:
You can't go to specific record
This prevents me from getting the add button functional.
Any help is appreciated. Thanks