T
TeeSee
If Me.Dirty Then
Me.Dirty = False
Please help me understand the above snippet of code assuming a single
form.
The second I input data into a bound control the form is Dirty.
According to my reference Me.Dirty=True until record is saved.
So now that I have dirtied the form I have changed my mind and want to
bail and so the above code sets the Dirty property to False (which is
fooling Access into thinking that I haven't typed anything at all) Do
I have that correct?
The above code still saves the partial input.
Please explain. Thanks
Me.Dirty = False
Please help me understand the above snippet of code assuming a single
form.
The second I input data into a bound control the form is Dirty.
According to my reference Me.Dirty=True until record is saved.
So now that I have dirtied the form I have changed my mind and want to
bail and so the above code sets the Dirty property to False (which is
fooling Access into thinking that I haven't typed anything at all) Do
I have that correct?
The above code still saves the partial input.
Please explain. Thanks