Click here to Skip to main content
15,901,001 members
Home / Discussions / C#
   

C#

 
AnswerRe: Can I run script file on server through .net? Pin
Pete O'Hanlon28-Feb-07 22:29
mvePete O'Hanlon28-Feb-07 22:29 
QuestionRemoving Pin
myNameIsRon28-Feb-07 21:05
myNameIsRon28-Feb-07 21:05 
AnswerRe: Removing Pin
Stefan Troschuetz28-Feb-07 21:17
Stefan Troschuetz28-Feb-07 21:17 
GeneralRe: Removing Pin
myNameIsRon1-Mar-07 5:03
myNameIsRon1-Mar-07 5:03 
GeneralRe: Removing Pin
Stefan Troschuetz1-Mar-07 5:13
Stefan Troschuetz1-Mar-07 5:13 
GeneralRe: Removing Pin
myNameIsRon1-Mar-07 5:48
myNameIsRon1-Mar-07 5:48 
GeneralRe: Removing Pin
Stefan Troschuetz1-Mar-07 5:56
Stefan Troschuetz1-Mar-07 5:56 
AnswerRe: Removing Pin
Tuwing.Sabado28-Feb-07 22:37
Tuwing.Sabado28-Feb-07 22:37 
try this

call the method on pageload
RemoveRadioButtons(MyPanel);

here's the method...

public void RemoveRadioButtons(Control parentControl)<br />
{<br />
    foreach(Control childControl in parentControl.Controls)<br />
    {<br />
        if(childControl.HasControl())<br />
        {<br />
            //Call again the RemoveRadioButtons method to iterate to childcontrols<br />
            RemoveRadioButtons(childControl);<br />
        }<br />
        elseif(childControl is RadioButton)<br />
        {<br />
            parentControl.Controls.Remove(childControl);<br />
        }<br />
    }<br />
}


Regards,
Mark
Questionchange control location durinmg runtime Pin
md_refay28-Feb-07 21:02
md_refay28-Feb-07 21:02 
AnswerRe: change control location durinmg runtime Pin
CPallini28-Feb-07 21:10
mveCPallini28-Feb-07 21:10 
Questioncontol name Pin
md_refay28-Feb-07 20:55
md_refay28-Feb-07 20:55 
AnswerRe: contol name Pin
CPallini28-Feb-07 21:09
mveCPallini28-Feb-07 21:09 
AnswerRe: contol name Pin
Guffa28-Feb-07 21:11
Guffa28-Feb-07 21:11 
QuestionDifferen t Resource.resx and Settings.settings. Pin
daniel9928-Feb-07 20:32
daniel9928-Feb-07 20:32 
AnswerRe: Differen t Resource.resx and Settings.settings. Pin
alex.almeida1-Mar-07 0:51
alex.almeida1-Mar-07 0:51 
QuestionUrgent: sizeof operator Pin
Bulky Fellow28-Feb-07 20:13
Bulky Fellow28-Feb-07 20:13 
AnswerRe: Urgent: sizeof operator Pin
sharpiesharpie28-Feb-07 20:21
sharpiesharpie28-Feb-07 20:21 
AnswerRe: Urgent: sizeof operator Pin
Guffa28-Feb-07 20:58
Guffa28-Feb-07 20:58 
GeneralRe: Urgent: sizeof operator Pin
Luc Pattyn1-Mar-07 9:04
sitebuilderLuc Pattyn1-Mar-07 9:04 
GeneralRe: Urgent: sizeof operator Pin
Guffa1-Mar-07 12:00
Guffa1-Mar-07 12:00 
Questionimage path in parameter Pin
Support12328-Feb-07 19:59
Support12328-Feb-07 19:59 
AnswerRe: image path in parameter Pin
Pete O'Hanlon28-Feb-07 22:32
mvePete O'Hanlon28-Feb-07 22:32 
GeneralRe: image path in parameter Pin
Support12328-Feb-07 22:36
Support12328-Feb-07 22:36 
QuestionSetup Project Issue Pin
Wonna28-Feb-07 19:46
Wonna28-Feb-07 19:46 
Questionarry replca Pin
md_refay28-Feb-07 19:38
md_refay28-Feb-07 19:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.