Private Sub Status_AfterUpdate()
On Error GoTo Err_Status_AfterUpdate
Dim stDocName As String
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
[/QUOTE]
Mmmmm, you should be aware that the DoMenu Item has been obsolete for years and should no longer be used, replace it with the RunCommand constants instead. In this instance it should be
RunCommand acCmdSaveRecord