form should not auto save changes untill i say "yes" to them

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

Guest

form should not directly write in the main database(auto update) while we
chaning the record.untill we say "yes" to it. if we say "no" the changes,
form should have the original recoed in the database.
 
hi,
if the form is bound then you will have to unbind it and
do the update with code.
 
You can use the Form_BeforeUpdate Event to ask the user if
he/she wants to save the change. If the user says yes,
let the update proceeds normally. If the use says no,
cancel the update.

HTH
Van T. Dinh
MVP (Access)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top