make text box valid only if yes/no is no

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?

Code the form's Current event AND the check box's AfterUpdate event:

Me![TextControlName].Visible = Not Me![CheckBoxName]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top