Macro: Action=SetWarrnings>Warnings On=No (VBA: DoCmd.SetWarnings False)
That will ignore the warning messages and complete the action without the user havning to interact.
Macro: Action=QUIT Options=SaveALL (VBA: DoCmd.Quit acQuitSaveAll)
That will save all the changes in all open objects then quit the application.
-Goh