C
Chris
Hello group, I am using continuous forms to record childrens details; Age
and name. I require the childs name if they are over 17 but do not if they
are below.
When I use continuous forms I can enable/disable the name when the age is
above or below 17. However I come into some difficulty when two or more
children are in the forms with ages above and below 17.
Is there any way using continious forms to reference the individual name
fields?
'Basic code being used
If me.txtChildAge >= 17 Then
me.txtChildName.Enabled = True
Else
me.txtChildName.Enabled - = False
End IF
and name. I require the childs name if they are over 17 but do not if they
are below.
When I use continuous forms I can enable/disable the name when the age is
above or below 17. However I come into some difficulty when two or more
children are in the forms with ages above and below 17.
Is there any way using continious forms to reference the individual name
fields?
'Basic code being used
If me.txtChildAge >= 17 Then
me.txtChildName.Enabled = True
Else
me.txtChildName.Enabled - = False
End IF