Stopping Auto Saves

  • Thread starter Thread starter Diane
  • Start date Start date
D

Diane

How can I make my access database PROMPT before
automatically saving? At times a record is changed and
when the user exits, the information is then saved.
 
If you use bound Forms for data entry, you can use the Form_BeforeUpdate
Event to ask the user whether he/she wants to save the Record or abandon the
changes before exiting.

See Access VB Help on the BeforeUpdate Event of a Form.
 
Back
Top