Hi Neil,
To set the scenario out, ive created a 'customer details form' that links to a 'job details form'
When i added a new customer entered the details etc, and went to Add Job the new details were not appearing on the Job Details form.
I thought a Save button might be the appropriate answer. Ive tried this code out and it seems to work ok:-
Private Sub Command51_Click()
On Error GoTo Err_Command51_Click
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
Exit_Command51_Click:
Exit Sub
Err_Command51_Click:
MsgBox Err.Description
Resume Exit_Command51_Click
End Sub