G Guest Dec 13, 2004 #1 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!
F fredg Dec 13, 2004 #2 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! Click to expand... Code the Current event of the Form, as well as the AfterUpdate event of that 'other' box: OptionGroupName.visible = [otherbox] = True
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! Click to expand... Code the Current event of the Form, as well as the AfterUpdate event of that 'other' box: OptionGroupName.visible = [otherbox] = True