In a Microsoft Access form, whenever the current record changes, any changes in bound controls are silently saved to the database tables. This is fine, but I don\'t want it to h
In the Form in the 'On Unload' event add the below code.
DoCmd.RunCommand acCmdUndo DoCmd.Quit
Records no longer being saved when users close a form in any way.