Private Sub Command1_Click()
Static I As Integer
I = I + 1
Load Text1(I) 'you must load new control first
With Text1(I)
.Visible = True
.Top = Text1(I - 1).Top + Text1(I - 1).Height + 50
.Text = "Text" & I + 1
'you can set other properties here
End With
End Sub