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
How do I create a single-file assembly?
What is written in c#?
When should I use static in C#?
what is a destructor?
What are tuples c#?
What is the output of TextWriterTraceListener redirected?
What is the difference between ref and out in c#?
Explain the difference between boxing and unboxing.
What is sqldataadapter in c#?
What is a string in c#?
How do I create a new form in c#?
What are the types of operator?
What is a Jagged Array in C#?
Explain the difference between a struct and a class?
Why do we need singleton class in c#?