Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to group dynamic labels quite close to each other but when I do and input the text in the labels, they do not display when I run my code. It shows nothing as if it hasn't printed. I was wondering what I can do in order to group dynamic labels close to each other. thanx

1st dynamic Label created:

Label l = new Label();
System.Drawing.Point l0 = new System.Drawing.Point(15, 48 + z);
l.Location = l0;
l.Text = textReader.Value.ToString();
l.AutoSize = true;
l.MaximumSize = new Size(120, 50);
z+= 35;

2nd Dyanmic Label Created:

System.Drawing.Point l1 = new System.Drawing.Point(65, 48 + x);
l2.Location = l1;
l2.Text = textReader.Value.ToString();
l2.AutoSize = true;
l2.MaximumSize = new Size(120, 50);
x += 35;
share|improve this question
2  
Design view does not show dynamically created controls, it's not executing your code. – Shadow Wizard May 1 '12 at 11:40
sorry my mistake i meant when i execute the program – Hashey100 May 1 '12 at 11:42
4  
There's no sign that you're ever actually adding the labels to the form... – Jon Skeet May 1 '12 at 11:44

1 Answer

up vote 5 down vote accepted

You have to add the controls to the Form.

Form1.Controls.Add(l);
Form1.Controls.Add(l2);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.