Dynamic controls on windows forms
-
Hi, Im used to adding controls like radio buttons on web forms in a
PlaceHolder
, 1.Is there a similar control on windows form as well otherwise how can I add controls dynamically on a windows form. 2.And if I addRadioButtons
I need to group them by a 2 by 2 array.. In VS 2005 there is no group property for radio buttons... How do I do it? Help plz.._____________________________________________________ Yea! I could be wrong...
-
Hi, Im used to adding controls like radio buttons on web forms in a
PlaceHolder
, 1.Is there a similar control on windows form as well otherwise how can I add controls dynamically on a windows form. 2.And if I addRadioButtons
I need to group them by a 2 by 2 array.. In VS 2005 there is no group property for radio buttons... How do I do it? Help plz.._____________________________________________________ Yea! I could be wrong...
1 - There is a panel, but in Windows Forms, you can specify the location of your control, so it's not really needed 2 - Group them by placing them where you want them to be.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
1 - There is a panel, but in Windows Forms, you can specify the location of your control, so it's not really needed 2 - Group them by placing them where you want them to be.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
2. I wnat group them in 2 by 2.. like radButton1a | radButton1b radButton2a | radButton2b radButton3a | radButton3b etc... Like I want radiobuttons 2 and 3 to be independent of 1... When I check radButton1b, only radButton 1a should be unchecked.. I hope I explain...
_____________________________________________________ Yea! I could be wrong...
-
2. I wnat group them in 2 by 2.. like radButton1a | radButton1b radButton2a | radButton2b radButton3a | radButton3b etc... Like I want radiobuttons 2 and 3 to be independent of 1... When I check radButton1b, only radButton 1a should be unchecked.. I hope I explain...
_____________________________________________________ Yea! I could be wrong...
I dunno if there's an easier way, but perhaps you need to create a control that holds two radio buttons, which will group them seperate from the rest of the form ?
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog