Welcome to VBF!

Not sure what that array is for ... however what you can do is create a control array (paste one textbox on the form in design and set its Index = 0) and at runtime simply create new instance as follows (you did attempted):
VB Code:
  1. With frmServer
  2.     For i = 1 To intSomeUbound 'control array member with index 0 already exist
  3.         Load .Text1(i)
  4.         .Text1(i).Move iLeft, iTop 'determine correct position
  5.         'you may need to set text property here
  6.         'you may need to set TAG property here so you can determine later what is what
  7.         .Text1(i).Visible = True
  8.     Next
  9. End With
NOTE: there is another technic exist (controls collection) but using control array might be much easier to handle:
VB Code:
  1. Private Sub Text1_Change(Index As Integer)
  2.     Select Case Index 'or Text1(Index).Tag (or some other identifier)
  3.         Case 0
  4.             'do something
  5.     End Select
  6. End Sub