Yes I will get on it now that I have had Lunch.
I won't bother with other files until I have this working.
The save to another folder could be achieved using the same copy code as now and then "kill" the original file.

This is the sort of code that you need for the decision process, obviously with different wording and actions

Dim response
    response = MsgBox("Are You Sure You Want to Quit Access", vbYesNo + vbExclamation + vbDefaultButton2)
    If response = vbNo Then Exit Sub   ' User chose No.
    
    DoCmd.Quit