Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Create new controls in RunTime

Create new controls in RunTime

Scheduled Pinned Locked Moved C#
questionhardware
3 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L Offline
    L Offline
    liqnit
    wrote on last edited by
    #1

    Hello how do i create a new RadioButton in run time? i getting a list of name would like to create a radiobutton on the form within a panel . when i try : RadioButton rbNew = new RadioButton (); i get Embedded statement cannot be a declaration or labeled statement please advice thanks Have a nice Day

    S 1 Reply Last reply
    0
    • L liqnit

      Hello how do i create a new RadioButton in run time? i getting a list of name would like to create a radiobutton on the form within a panel . when i try : RadioButton rbNew = new RadioButton (); i get Embedded statement cannot be a declaration or labeled statement please advice thanks Have a nice Day

      S Offline
      S Offline
      Stefan Troschuetz
      wrote on last edited by
      #2

      Searching for the error brings up that you maybe put the statement inside of an if-statement, which isn't allowed. Try the following instead: RadioButton rbNew;

      if (something)
      {
      rbNew = new RadioButton();
      }

      If this doesn't help, please provide the surrounding code.


      www.troschuetz.de

      L 1 Reply Last reply
      0
      • S Stefan Troschuetz

        Searching for the error brings up that you maybe put the statement inside of an if-statement, which isn't allowed. Try the following instead: RadioButton rbNew;

        if (something)
        {
        rbNew = new RadioButton();
        }

        If this doesn't help, please provide the surrounding code.


        www.troschuetz.de

        L Offline
        L Offline
        liqnit
        wrote on last edited by
        #3

        thanks a lot Have a nice Day

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups