Hi corner,
private void Button_Click(object sender, RoutedEventArgs e)
{
How to add new input textbox in row?
}
{
How to add new input textbox in row?
}
Any idea?
Thanks
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rajkiran SwainPosted Jun 5, 2015, 9:58 AM
private void button1_Click_1(object sender, EventArgs e){txtRun = new TextBox();txtRun.Name = "txtDynamic";txtRun.Location = new System.Drawing.Point(20, 18);txtRun.Size = new System.Drawing.Size(200, 25);// Add the textbox control to the form's control collectionthis.Controls.Add(txtRun);}ramya bharathPosted Jun 5, 2015, 9:28 AM