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
 
Back
Top