I have code to enable a text box that is not enabled when a form starts up until a yes or no button is checked. It works but when you go to a new record the text box is still enabled.
How do I get it to reset the text box to the value of enable = false for new records
Below is my code
Any help is appreciated
Thanks
Private Sub Employable_AfterUpdate()
If Me.Employable = True Then
Me.Employer.Enabled = True
Else
Me.Employer.Enabled = False
End If
End Sub
How do I get it to reset the text box to the value of enable = false for new records
Below is my code
Any help is appreciated
Thanks
Private Sub Employable_AfterUpdate()
If Me.Employable = True Then
Me.Employer.Enabled = True
Else
Me.Employer.Enabled = False
End If
End Sub