Where is RadioButtonList?

  • Thread starter Thread starter Brett
  • Start date Start date
B

Brett

I'm using VB .NET 2003. In the toolbox, I should have the RadioButtonList
but it isn't there. I've sorted aphebetically but only have RadioButton and
RadioButtonArray. I right click to add an item and the Customize Toolbox
dialogue comes up. The RadioButtonList is checked but still isn't in the
toolbar. Any suggestions?

Thanks,
Brett
 
I'm using VB .NET 2003. In the toolbox, I should have the
RadioButtonList but it isn't there. I've sorted aphebetically but
only have RadioButton and RadioButtonArray. I right click to add an
item and the Customize Toolbox dialogue comes up. The RadioButtonList
is checked but still isn't in the toolbar. Any suggestions?

Thanks,
Brett

Right click - show all tabs - its in web forms. Its not available for
windows forms.
 
jo0ls said:
RadioButtonList but it isn't there.
[...]
Right click - show all tabs - its in web forms. Its not available for
windows forms.

.... and thus you cannot/should not use it on Windows Forms applications ;-).
 
Herfried K. Wagner said:
jo0ls said:
RadioButtonList but it isn't there.
[...]
Right click - show all tabs - its in web forms. Its not available for
windows forms.

... and thus you cannot/should not use it on Windows Forms applications
;-).

Well, my goal is to have two or more radio buttons. Only one can be checked.
The only two values are "yes" and "no". The radio buttons would need to have
the same name but give different values, depending on their checked state.
How can this be done?

Thanks,
Brett
 
Brett,

Just drag a groupbox on your form and in that two radiobuttons, probably a
strange thing to do for somebody working with webforms, however this works
with winforms very nice.

The rest goes almost automaticly.

Cor
 
Brett said:
Well, my goal is to have two or more radio buttons. Only one can be
checked. The only two values are "yes" and "no". The radio buttons would
need to have the same name but give different values, depending on their
checked state. How can this be done?

Add the radiobuttons to a panel or groupbox to group them. Only one
radiobutton per group can be checked.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top