How do I disable Access auto saving changes to a record in forms?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form in which i look up records in a table and can edit them. but i
don't want them to be saved without my hitting the save button i created.
anyone know how to disable access from automatticly saving editied or new
records??
 
dave said:
I have a form in which i look up records in a table and can edit
them. but i don't want them to be saved without my hitting the save
button i created. anyone know how to disable access from automatticly
saving editied or new records??

You can't. You can use the BeforeUpdate event to raise a "Do you want to
save changes?" prompt and issue Me.Undo and set Cancel to True if the answer
is "No", but the only way to not have an auto-save behavior is to not use
bound forms.
 
Back
Top