Option Group Question

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

Guest

I am having trouble setting optionxx.enabled on subforms. I have five
subforms and "on current" I have code to check to see which subform is
working and I enable each option for use on that one and set enable to false
on all other subforms. It works great on each subform and all Option Groups
except for one option on each of the subforms. I have tried recreating and
renaming to no evail. Any Ideas, please help?

DDBEARDS
 
It would be helpful to see the code you are using.

Are you getting any error when you try to disable the controls? One
possibility is that the option group you are trying to disable currently has
the focus on that subform. You cannot disable a control that has the focus.
Usually, attempting to do so would raise an error, but if you have disabled
error handling (On Error Resume Next) then no message would be displayed.

Post some of your code if you still can't figure it out.
 
Back
Top