Want to hide check boxes

  • Thread starter Thread starter Matt
  • Start date Start date
M

Matt

A user puts a check in a check box based on their status.
I have 7 other check boxes. I would like for the 7 boxes
to be hidden if there is not a checkmark in the status
check box. I would like for them to be showing if there
is a check in the status check box. Is this possible to
have the check boxes hidden or not, based on another
check box? Any help would be greatly appreciated.
Thanks. Matt
 
Matt,

It's vrey easy to do this:

If CheckBox0.Value = False Then

CheckBox1.Visible = False
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top