Label lbltest = new Label();
this.Panel1.Controls.Add(lbltest);
How would I access this lbl in another method?
I thought it would be something like this.Panel1.Controls but it did not show up. Any ideas??
Printable View
Label lbltest = new Label();
this.Panel1.Controls.Add(lbltest);
How would I access this lbl in another method?
I thought it would be something like this.Panel1.Controls but it did not show up. Any ideas??
Code:this.Panel1.Controls[index].XXX
Thanks Pirate, you are well on your way to earning your first pay check!!! :D