5
Answers

how to create label depend the output of the program?

vishnu krishnan

vishnu krishnan

14y
1.7k
1
i want to create label automaticaly, ie i am try to printing some value into the form using label,

example...

in my form now i print a value using label, ie only one label in my form, if my program have more output, label have to create automatically,depend on the output
Answers (5)
0
Rakesh  Jha

Rakesh Jha

NA 340 5k 14y

 if (a1.Contains(line))
                      {
                            Label one = new Label();
                            one.ForeColor = Color.White;
                            one.Text = line;
                            one.Left = 633;
                            one.Top = 250;
                            this.Controls.Add(one);
                     }
above code have no issue, it will add more label on your form but at same location. First you should understand this line
this.Controls.Add(one);
it means that, we are adding one label control to form control. So whether you want multiple label this code will work but in form you should set some systematic pattern for displaying those labels.
0
vishnu krishnan

vishnu krishnan

NA 105 213k 14y
i tried this, one doubt.
in my project, just see this..
 if (a1.Contains(line))
                        {
                            Label one = new Label();
                            one.ForeColor = Color.White;
                            one.Text = line;
                            one.Left = 633;
                            one.Top = 250;
                            this.Controls.Add(one);
                          }
here a1 is the arraylist and line is some string, so actually this string check with this arraylist, if that line in the  arraylist, i have to print that,so if more string match with this arraylist have to create more label for print....
so what will print that?
                

                       
0
Rakesh  Jha

Rakesh Jha

NA 340 5k 14y
of couse yes, try it
0
vishnu krishnan

vishnu krishnan

NA 105 213k 14y

will this code create label dynamically?
0
Rakesh  Jha

Rakesh Jha

NA 340 5k 14y

If i am not wrong, then you want dynamically add label control on your form. May be below code will help you
Label
lblNewLabel = new Label();
lblNewLabel.Name =
"lblNew";
lblNewLabel.Text =
"Hello";
lblNewLabel.Left = 250;
lblNewLabel.Top = 250;
this.Controls.Add(lblNewLabel);