how to set a field to disable when another field is checked MS ac

L

Larry Daugherty

Or ...

In the Change event of the checkbox:

me!ThatOtherControl.enabled = Not(me!ThisCheckbox)

HTH
 
Top