Why is the Me.Dirty condition false in the close event of a form?

  • Thread starter Thread starter Robert
  • Start date Start date
Why is the Me.Dirty condition false in the close event of a form?

Because the Update event (which writes all the data to disk and "cleans" the
form) has already fired.
 
Robert said:
Why is the Me.Dirty condition false in the close event of a form?


Because any record edits were saved before the form's unload
and close events.
 
Back
Top