Hola nuevamente palmercado jajaja, alli lo que deberias hacer es algo asi :
Código c#:
Ver originalint i;
int ex = 50;
for (i = 0; i < 5; i++) {
TextBox tb = default(TextBox);
tb.Location = new Point(48, ex);
this.Controls.Add(tb[i]);
ex+=30;
}
Saludos!.