So you have found what to do.
Good to Hear.
I'll try to see what I can do. Because I really have little experience about macros and VB.
EDIT:
I still can't make it work. Adding the navigation button is the easiest way but clicking save and new record button for like 4-5 times is really inconvenient.
I tried this code, but it only saves the data of the main form.
'------------------------------------------------------------
' btnSavenNew_Click
'
'------------------------------------------------------------
Private Sub btnSavenNew_Click()
On Error GoTo btnSavenNew_Click_Err
On Error Resume Next
If (Form.Dirty) Then
DoCmd.RunCommand acCmdSaveRecord
End If
If (MacroError.Number <> 0) Then
Beep
MsgBox MacroError.Description, vbOKOnly, ""
Exit Sub
End If
On Error GoTo 0
DoCmd.GoToRecord , "", acNewRec
DoCmd.GoToControl "AccidentTypeDescription"
btnSavenNew_Click_Exit:
Exit Sub
btnSavenNew_Click_Err:
MsgBox Error$
Resume btnSavenNew_Click_Exit
End Sub
Still need help, badly.
