selecting only one item in checkboxlist

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to use a radiobuttonlist in a windows form control but I know
this is not possible because radiobuttonlists are only available in web forms.

I am trying to use a checkboxlist instead and I am encountering problems. I
do not want multiple checks.

Any help is highly appreciated.
 
adiweb,

Why not use the RadioButton class? It will give you the same thing that
the web control does.

Hope this helps.
 
Aren't radiobuttonlists only for web forms. I am not creating a web form. I
am creating a windows form.

Thanks a bunch for the quick response.

Nicholas Paldino said:
adiweb,

Why not use the RadioButton class? It will give you the same thing that
the web control does.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

adiweb said:
I would like to use a radiobuttonlist in a windows form control but I know
this is not possible because radiobuttonlists are only available in web
forms.

I am trying to use a checkboxlist instead and I am encountering problems.
I
do not want multiple checks.

Any help is highly appreciated.
 
There is a RadioButton class in the System.Windows.Forms namespace...


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

adiweb said:
Aren't radiobuttonlists only for web forms. I am not creating a web form.
I
am creating a windows form.

Thanks a bunch for the quick response.

Nicholas Paldino said:
adiweb,

Why not use the RadioButton class? It will give you the same thing
that
the web control does.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

adiweb said:
I would like to use a radiobuttonlist in a windows form control but I
know
this is not possible because radiobuttonlists are only available in web
forms.

I am trying to use a checkboxlist instead and I am encountering
problems.
I
do not want multiple checks.

Any help is highly appreciated.
 
I would like to use a list. I know that you can create radiobuttons
dynamically in a panel or a groupbox, but it you have a large list, there is
really no control as to how it will be presented in the form.

I would like to have my checkboxlist act like a radiobuttonlist. The
problem is that radiobuttonlists only exist as web controls. I need a
windows control.

Thanks a bunch for the quick response.

adiweb said:
Aren't radiobuttonlists only for web forms. I am not creating a web form. I
am creating a windows form.

Thanks a bunch for the quick response.

Nicholas Paldino said:
adiweb,

Why not use the RadioButton class? It will give you the same thing that
the web control does.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

adiweb said:
I would like to use a radiobuttonlist in a windows form control but I know
this is not possible because radiobuttonlists are only available in web
forms.

I am trying to use a checkboxlist instead and I am encountering problems.
I
do not want multiple checks.

Any help is highly appreciated.
 
Back
Top