Hiding Text Boxes when Yes/No is True

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

Guest

Hello all,

I am trying to hide a Text box field (multiple ones) when the YES/NO is
chaecked on.

Any Help would be greatly appreciated.

-The Novice
 
Hi,
try this in the on current event of the form:

Me.YourControl.Visible = Me.checkboxcontrolname

HTH
Good luck
 
Hello all,

I am trying to hide a Text box field (multiple ones) when the YES/NO is
chaecked on.

Any Help would be greatly appreciated.

-The Novice

Code the AfterUpdate event of the CheckBox control:

[ControlA].Visible = Not [CheckBoxControl]
[ControlB].Visible = Not [CheckBoxControl]
etc.

Place same code in the Form's Current event.
 

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