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 are the 3 elements of delegation?
What is the wildcard character in sql?
Can we override main method in c#?
What is #region in c#?
Why do we use abstract class in c#?
Can a static class contain non static members?
What is the use of 0 in c#?
What can you do as a .net developer?
What is a strong name in c#?
How to find methods of a assembly file (not using ILDASM)?
What is delimiter in c#?
Can datetime be null c#?
How do I link two windows forms in c#?
What is unrecognized escape sequence in c#?
Why do we use ienumerable in c#?