Hi all, I am creating a program in C# and i have a problem. I have a button and when i click i need textboxes to appear but with some padding, and not on top of each other... This is the code i am using on click evetn:

TextBox t = new TextBox();
t.Width = 100;
t.Text = "This Is created at Runtime";
t.Location = new System.Drawing.Point(200, 200);
t.
this.Controls.Add(t);

any help pls? thanks