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

J

John W. Vinson

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.
 
M

Marshall Barton

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.
 
Top