Remou
I am attaching the Save record command button to a form that is single form with embedded continuous and single forms. The code for the command button is:
Private Sub Save_Record_Click()
On Error GoTo Err_Save_Record_Click
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
Exit_Save_Record_Click:
Exit Sub
Err_Save_Record_Click:
MsgBox Err.Description
Resume Exit_Save_Record_Click
End Sub
How do I get it to save as well as move to the next record.
Thanks