S
SPK
I want to disable/enable a text field based on the value in the date field.
can anybody help. I have used the following code for the same but it is
disabling the field always.
Private Sub DOB_AfterUpdate()
If DOB.Value = "" Then
Age_yrs.Enabled = False
Else
Age_yrs.Enabled = True
End If
End Sub
can anybody help. I have used the following code for the same but it is
disabling the field always.
Private Sub DOB_AfterUpdate()
If DOB.Value = "" Then
Age_yrs.Enabled = False
Else
Age_yrs.Enabled = True
End If
End Sub