Hi, need some help - Using Access 2003, Windows XP
Trying to get the Form Dirty event to work, but no joy. I was under the impression when a key is pressed in a control such as a TextBox or a selection from a ComboBox is made, the Form's Dirty event fires. Here is my code
Why is this not working?
Trying to get the Form Dirty event to work, but no joy. I was under the impression when a key is pressed in a control such as a TextBox or a selection from a ComboBox is made, the Form's Dirty event fires. Here is my code
Code:
Private Sub Form_Dirty(Cancel As Integer) If Me.Dirty Then Me!cmdTest.Enabled = True End Sub
Comment