Visible and Invisible

N

newbietech

Hi,

I am creating a dbase and I need to know how to make a list of questions
visible by answering a question.

Example: Its a YES/NO question when clicking on NO a list of check boxes
link to the table appears.

How can I do that.

Any help is greatly appreciated.
 
F

fredg

Hi,

I am creating a dbase and I need to know how to make a list of questions
visible by answering a question.

Example: Its a YES/NO question when clicking on NO a list of check boxes
link to the table appears.

How can I do that.

Any help is greatly appreciated.

Is it a Yes/No check box field that you are clicking on?
If so, code the control's AfterUpdate event:

Me.[OtherControlName].Visible = Not Me.[CheckBoxName]

Repeat for each additional check box control.
 
Top