> Do multiple sets of radio buttons on a form have to be "separated" via
> group boxes?
>
> I remember there used to be a "group" property on radio buttons but I
> guess not anymore.
The default behavior, if I recall correctly, is that radio buttons grouped
within any container control operate together. If you like, you can use a
Panel or even a UserControl, neither of which have any visual behavior by
default, to group radio buttons invisibly.
Of course, you could always just link the group buttons by appropriate
event handlers that do the right thing, deselecting the other buttons in a
group when a particular button is selected.
Pete