Where is RadioButtonList?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Brett

    Where is RadioButtonList?

    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
    RadioButtonArra y. 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


  • jo0ls

    #2
    Re: Where is RadioButtonList ?

    "Brett" <no@spam.net> wrote in
    news:OGr5BMACFH A.1408@TK2MSFTN GP10.phx.gbl:
    [color=blue]
    > 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 RadioButtonArra y. 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[/color]

    Right click - show all tabs - its in web forms. Its not available for
    windows forms.

    Comment

    • Herfried K. Wagner [MVP]

      #3
      Re: Where is RadioButtonList ?

      "jo0ls" <jo0ls@invalid. null> schrieb:[color=blue][color=green]
      >> RadioButtonList but it isn't there.[/color]
      > [...]
      > Right click - show all tabs - its in web forms. Its not available for
      > windows forms.[/color]

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

      --
      M S Herfried K. Wagner
      M V P <URL:http://dotnet.mvps.org/>
      V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

      Comment

      • Brett

        #4
        Re: Where is RadioButtonList ?


        "Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in message
        news:%23xyx%23N FCFHA.3524@TK2M SFTNGP15.phx.gb l...[color=blue]
        > "jo0ls" <jo0ls@invalid. null> schrieb:[color=green][color=darkred]
        >>> RadioButtonList but it isn't there.[/color]
        >> [...]
        >> Right click - show all tabs - its in web forms. Its not available for
        >> windows forms.[/color]
        >
        > ... and thus you cannot/should not use it on Windows Forms applications
        > ;-).[/color]

        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


        Comment

        • Cor Ligthert

          #5
          Re: Where is RadioButtonList ?

          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


          Comment

          • Herfried K. Wagner [MVP]

            #6
            Re: Where is RadioButtonList ?

            "Brett" <no@spam.com> schrieb:[color=blue]
            > 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?[/color]

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

            --
            M S Herfried K. Wagner
            M V P <URL:http://dotnet.mvps.org/>
            V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

            Comment

            Working...