G
Guest
I have the following code in my CurrentEvent procedure of my form. This locks
all the controls when a date is filled into the "txtDateClosed" control. This
also locks my command buttons. How do I keep the command buttons unlocked no
matter the state of this code?
If IsNull([txtDateClosed]) Then
Form.AllowEdits = True
Else
Form.AllowEdits = False
End If
all the controls when a date is filled into the "txtDateClosed" control. This
also locks my command buttons. How do I keep the command buttons unlocked no
matter the state of this code?
If IsNull([txtDateClosed]) Then
Form.AllowEdits = True
Else
Form.AllowEdits = False
End If