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 console write in c#?
Explain the difference between event and a delegate in c#?
What does executescalar return in c#?
What is the difference between array and arraylist c#?
What is the difference between mobile application and desktop application?
Can you inherit multiple abstract classes in c#?
Define interface class in c#?
How to implement an object pool in c#.net.
What is dto c#?
Explain about c# language.
What is the difference between final finally and finalize in c#?
What is the use of thread join in c#?
Why are strings immutable c#?
What are the methods in c#?
what is the difference between convert.tostring() and tostring() functions ?