Appearing/Disappearing Fields

  • Thread starter Thread starter emu
  • Start date Start date
E

emu

Guest
I have a form that I would like some fields to appear and disapear based on the yes/no value of another field.(ie if the click yes then give more info)

Any hlep would be greatly appreciated
 
on the click event of your check box, run vba to check the value (true or false), or the value of your frame if that is used instead, and set the visible property to true to display, and false to hide your other controls.
 
If checkcontrolname.Value=True then
text1.Visible=True
Else
text1.Visible=False
end if
 

Users who are viewing this thread

Back
Top Bottom