Closing a Bound Form without Saving to the underlying table?

  • Thread starter Thread starter Iain
  • Start date Start date
I

Iain

Is it possible to close a form with fields bound to a table, without saving
any data that is in the fields on the Form?

I've tried using acSaveNo but the data still gets saved.
 
You can undo the form. Code is:

Me.Undo
Me.Undo

I do it twice to make sure that, it is done (and not being confused with
undoing the last control)

You will still lose any autonumber that has been used.
 
Back
Top