G Guest Nov 8, 2005 #1 I'm trying to make text appear in a text box only if a yes/no check box is not checked (no). is there a way to do this?
I'm trying to make text appear in a text box only if a yes/no check box is not checked (no). is there a way to do this?
F fredg Nov 8, 2005 #2 I'm trying to make text appear in a text box only if a yes/no check box is not checked (no). is there a way to do this? Click to expand... Code the form's Current event AND the check box's AfterUpdate event: Me![TextControlName].Visible = Not Me![CheckBoxName]
I'm trying to make text appear in a text box only if a yes/no check box is not checked (no). is there a way to do this? Click to expand... Code the form's Current event AND the check box's AfterUpdate event: Me![TextControlName].Visible = Not Me![CheckBoxName]