J
JB
I have a form that I enter and with the Load event I disable the Save
button. I want the button to appear as soon as the form is dirty. I
have done this before with no problems even with other forms in this
same application.
When I type in the first field, the Form Dirty event is not firing. I
have a msgbox statement in the Form_Dirty event and it never appears.
I have an AfterUpdate event on the first field and I test Me.Dirty in
that code. Me.Dirty is true in that test of the first field.
Why doesn't Form.Dirty fire? What do I need to look at that will help
me trace this issue? How can Me.Dirty=True and Form_Dirty not trigger?
I have a similar problem on this form when I save the record. I use
Me.Dirty=False to save the record but the Form_BeforeUpdate event does
not fire either? Is this because of some code on the form? Can the
form be corrupted?
button. I want the button to appear as soon as the form is dirty. I
have done this before with no problems even with other forms in this
same application.
When I type in the first field, the Form Dirty event is not firing. I
have a msgbox statement in the Form_Dirty event and it never appears.
I have an AfterUpdate event on the first field and I test Me.Dirty in
that code. Me.Dirty is true in that test of the first field.
Why doesn't Form.Dirty fire? What do I need to look at that will help
me trace this issue? How can Me.Dirty=True and Form_Dirty not trigger?
I have a similar problem on this form when I save the record. I use
Me.Dirty=False to save the record but the Form_BeforeUpdate event does
not fire either? Is this because of some code on the form? Can the
form be corrupted?