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 is a void c#?
Describe the process of “exception handling implementation” in c#?
What is difference between destructor and finalize?
Is friend a constructor?
What is an assembly loader?
Is string value type c#?
What is the difference between paramaterized constructor and copy constructor?
What is a dynamic assembly?
How are Windows programs different from normal C-programs?
Which one is trusted and which one is untrusted?
What is c# entity framework?
What is scaffolding in c#?
What is the difference between yield and return?
Explain async and await?
What are the advantages of using delegates in c#?