Actually, I think it would be kind of easy. You can derive from
RadioButton and provide a Value property which has the value that you want
that RadioButton to have.
Then, have a class derived from Panel (or some other container control)
which has a Value property. It would cycle through its controls and for
every type of that derived radio button class that it has, it would check to
see if the radio button is checked. If it is, it returns that value.
Hope this helps.

Signature
- Nicholas Paldino [.NET/C# MVP]
- mvp@spam.guard.caspershouse.com
> Back in the dim mists of antiquity I used to program in VBA for
> Microsoft Access (hey, don't knock it - very useful tool for the right
[quoted text clipped - 29 lines]
>
> Edward
teddysnips@hotmail.com - 15 May 2007 14:49 GMT
On May 15, 2:31 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.com> wrote:
> Actually, I think it would be kind of easy. You can derive from
> RadioButton and provide a Value property which has the value that you want
[quoted text clipped - 6 lines]
>
> Hope this helps.
It helps, in the sense that it tells me how to achieve my goal, or at
least gives me directions for landfall at least. What's truly
irritating is that IMHO this should be provided in the toolbox, since
groups of mutually exclusive option/radio buttons are pretty well
universal in UI design. I know some people think that drop-down lists
are better, but they're not, unless you have a lot of options (such as
a list of countries).
Oh well, back to the grindstone.
Cheers
Edward
Maybe you can use this:
http://www.codeproject.com/cs/combobox/RadioListBox.asp
It's looks quite nice, actually, but I haven't tested it yet
Cheers,
Johnny J.
> Back in the dim mists of antiquity I used to program in VBA for
> Microsoft Access (hey, don't knock it - very useful tool for the right
[quoted text clipped - 29 lines]
>
> Edward