Visible and Invisible

  • Thread starter Thread starter newbietech
  • Start date Start date
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.
 
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.
 
Back
Top