How does one add groups of menu items which can be
treated like radio buttons? I've seen many programs like
this, which have menu items with a dot next to the
selected item in a list. .NET seems to only support the
checked property.

-Chad

Re: How do I add radio menu items? by Hollywood

Hollywood
Thu Aug 14 14:05:12 CDT 2003

All the radio buttons on a control act as one "group", meaning that only one
of them can have their Checked property set to true. Think this is what you
mean. :) If you need more than one "group" of radio buttons, probably
easiest to slap down transparent panels and plunk your radio buttons into
each of those panels as appropriate using the panels as a "group".

"Chad" <ckallen_idx@yahoo.com> wrote in message
news:06ea01c36208$f5fa0710$a501280a@phx.gbl...
> How does one add groups of menu items which can be
> treated like radio buttons? I've seen many programs like
> this, which have menu items with a dot next to the
> selected item in a list. .NET seems to only support the
> checked property.
>
> -Chad



Re: How do I add radio menu items? by Chad

Chad
Thu Aug 14 20:37:06 CDT 2003

Sorry I wasn't more specific. I am not asking about the
normal Radio button control. I am seeking information on
how to add 'radio-type' menu items to a MainMenu
control. I've seen menu items that have check marks next
to them, but I've also seen menu items with dots next to
them. The ones with dots typically are groups of
mutually exclusive options. Is there a way to add these
to a .NET menu?

Thanks,
Chad
>-----Original Message-----
>I'm not sure what you mean. Just use the radiobutton
control. The checked
>property on this control just indicated if the radio
button is selected or
>not. If checked = true, the dot will appear. If checked
= false, no dot.
>
>"Chad" <ckallen_idx@yahoo.com> wrote in message
>news:06ea01c36208$f5fa0710$a501280a@phx.gbl...
>> How does one add groups of menu items which can be
>> treated like radio buttons? I've seen many programs
like
>> this, which have menu items with a dot next to the
>> selected item in a list. .NET seems to only support
the
>> checked property.
>>
>> -Chad
>
>
>.
>

Re: How do I add radio menu items? by Mark

Mark
Fri Aug 15 07:23:18 CDT 2003

Ah! Got it. I have no idea how to do that in CF.

"Chad" <ckallen_idx@yahoo.com> wrote in message
news:096c01c362cd$bc3a4920$a101280a@phx.gbl...
> Sorry I wasn't more specific. I am not asking about the
> normal Radio button control. I am seeking information on
> how to add 'radio-type' menu items to a MainMenu
> control. I've seen menu items that have check marks next
> to them, but I've also seen menu items with dots next to
> them. The ones with dots typically are groups of
> mutually exclusive options. Is there a way to add these
> to a .NET menu?
>
> Thanks,
> Chad
> >-----Original Message-----
> >I'm not sure what you mean. Just use the radiobutton
> control. The checked
> >property on this control just indicated if the radio
> button is selected or
> >not. If checked = true, the dot will appear. If checked
> = false, no dot.
> >
> >"Chad" <ckallen_idx@yahoo.com> wrote in message
> >news:06ea01c36208$f5fa0710$a501280a@phx.gbl...
> >> How does one add groups of menu items which can be
> >> treated like radio buttons? I've seen many programs
> like
> >> this, which have menu items with a dot next to the
> >> selected item in a list. .NET seems to only support
> the
> >> checked property.
> >>
> >> -Chad
> >
> >
> >.
> >