something like this ?
Dim Msg, Style, Title, Response, MyString
Msg = " Are you sure you want to Save this Record ?"
Style = vbYesNo + vbInformation + vbDefaultButton2
Title = "Save Record ?"
Response = MsgBox(Msg, Style, Title)
If Response = vbYes Then
MyString = "Yes"
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
MsgBox "The Record has been saved to the database", vbOKOnly, "Record Saved"
Else
MyString = "No"
End If