I made this code to generate a textbox when I click on the button the problem is that I want to read text from those textboxes as make a arraylist that receive the texts from those text boxes
private int count=0;
private void New_Click(object sender, EventArgs e)
{
TextBox tb = new TextBox();
tb.Name = "Process" + count;
tb.Location = new Point(13, y);
tb.Size = new Size(123, 29);
tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.Controls.Add(tb);
}