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.
 
Back
Top