I am in a new position and maintainging some preexisting code. The code is not how I would have done it but I am stuck with what I got.
Basic problem:
We have a form. On the form are some controls and a tab group. The tab group has 5 tabs each of which displays it's own form.
I added one of these tab/form combinations. On that form I placed 3 option group controls with 5, 3 and 2 options in each. If I run the form by itself the option groups work. The selecter moves from button to button and in tracing we go through the On-Click Subs just fine. But when run as part of the larger app the option buttons within the option groups don't work. Even temporary option buttons I placed on the form don't work, it is clear that despite there being On Click set for each, noting happens. The On Click for the Option Group (but not on a button?) will take me to the option group On Click sub but it has a value of zero.
I've been over it pretty thoroughly, the controls are enabled and unlocked, it just seems as if the controls can't find the On click Subs.
There is a set sequence the users follow wherein at one point the fields are editable and at other times are locked. However I have not put any of that code in this module yet. It appears to be a visibility problem, meaning the module for the form isn't visible to the form being displayed.
I'm sure the answer is something simple I am overlooking but HELP! PLEASE!
Frank