I have 8 check boxes and 4 radio buttons on a child form.

When the User checks a Check Box, they then select a radio button. They will do this for 1 to 8 of the check boxes.

The only way I could think of to keep track of this is create 8 panels with 4 unique radio buttons in each. Then I would set the visibility to each one accordingly. This method has other logistical errors than just trying to get the design view worked out.

I was wondering if there was a way to just use the radio buttons. I thought I could set a boolean variable to keep track of each Check Box's Radio buttons. Or an integer variable.

For instance, if Check Box 1 is checked and Radio Button 1 is checked then myVariable's value is 1 or whatever. Then when I actually run the app, I can check the value of the variable do do what I need.

Does this sounds plausible?

Any information you all can provide would be helpful. Thanks