Option Group Display

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an option group on a form that I only want to display after another
box on the form has been checked. How can I do this?
Thanks!
 
I have an option group on a form that I only want to display after another
box on the form has been checked. How can I do this?
Thanks!

Code the Current event of the Form, as well as the AfterUpdate event
of that 'other' box:

OptionGroupName.visible = [otherbox] = True
 

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

Back
Top