Hiding Text Boxes when Yes/No is True

T

TwinDad

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
 
F

freakazeud

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

Me.YourControl.Visible = Me.checkboxcontrolname

HTH
Good luck
 
F

fredg

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