Click here to Skip to main content
16,005,120 members
Home / Discussions / C#
   

C#

 
AnswerRe: moving ellipse over dataGridView Pin
sam#28-Feb-07 22:35
sam#28-Feb-07 22:35 
GeneralRe: moving ellipse over dataGridView Pin
t_nedelchev1-Mar-07 0:17
t_nedelchev1-Mar-07 0:17 
QuestionCan I run script file on server through .net? Pin
NanaAM28-Feb-07 21:14
NanaAM28-Feb-07 21:14 
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 
myNameIsRon wrote:
Hi Rick


I'm not Rick. It's the person I cite in my signature.

myNameIsRon wrote:
All radio buttons are added at run time with this code (to the same panel):


OK, so no recursion or iteration of additional controls is needed. Try to explicitely remove the radio button from the panel before disposing it.
foreach (Control control in panel_Label.Controls)
{
  if (control is RadioButton)
  { 
    panel_Label.Controls.Remove(control);
    control.Dispose();
  }
}



"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook

www.troschuetz.de

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 
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 

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.