how to set a field (checkbox) to disable when another field is checked MS access
J jess Sep 21, 2006 #1 how to set a field (checkbox) to disable when another field is checked MS access
N NetworkTrade Sep 21, 2006 #2 put them within the same Group box - - it is then automatically done this way
L Larry Daugherty Sep 24, 2006 #3 Or ... In the Change event of the checkbox: me!ThatOtherControl.enabled = Not(me!ThisCheckbox) HTH