How can i load the text box and label at the runtime based
on the existing text box and tabel
Answer Posted / anil
Generally code goes like this
private void LoadControl()
{
TextBox tb = new TextBox();
tb.Location = new Point(500, 100);
tb.Visible = true;
this.Controls.Add(tb);
}
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What's your approach to fetch static data in your windows form application?
What is an escape sequence? Name some string escape sequences in c#.
What is the difference between func and action delegate?
Which is better javascript or c#?
What is generic in c#?
Is cli same as the clr?
List some of the common data providers for ado.net framework?
How Is The Dll Hell Problem Solved In .net?
Explain about generics in c#.net?
Can non-default constructors be used with single call sao?
What is difference between code access and role based security?
How to find methods of a assembly file (not using ILDASM)?
Are c and c# the same thing?
Explain boxing and unboxing in c#?
What is a method signature in c#?