G
Guest
Hi!
I have a F_Main with TabCtl1 and TabCtl2:
TabCtl1 has txtDataResult to show us the age.
Ex: 6 years old
In TabCtl2 I have a txtWeight to write weight but only if txtDataResult in
TabCtl1 >6
For another words:
If [Forms]![F_Main]![TabCtl1]![txtDataResult]>6 Then
txtWeight.Enable = True
Else
txtWeight.Enable = False
End if
How to do this, please?
Thanks in advance.
an
I have a F_Main with TabCtl1 and TabCtl2:
TabCtl1 has txtDataResult to show us the age.
Ex: 6 years old
In TabCtl2 I have a txtWeight to write weight but only if txtDataResult in
TabCtl1 >6
For another words:
If [Forms]![F_Main]![TabCtl1]![txtDataResult]>6 Then
txtWeight.Enable = True
Else
txtWeight.Enable = False
End if
How to do this, please?
Thanks in advance.
an