W
Wayne
I need to enable a control if the user selects yes in
check box of another control.
Thanks in advance
Wayne
check box of another control.
Thanks in advance
Wayne
-----Original Message-----
If Me!SomeCheckBox = True then
Me!SomeOtherControl.Enabled = True
Else
Me!SomeOtherControl.Enabled = False
Endif
Ron
.