You can't access a control array from the Forms Control collection. You can get the controls atributes for example Name,BackColor,Text etc...

VB Code:
  1. Dim xx As Control
  2.  
  3. For Each xx In Me.Controls
  4.  If TypeOf xx Is TextBox Then
  5.   MsgBox xx.Name
  6.   MsgBox xx.Text
  7.   MsgBox xx.BackColor
  8.  End If
  9. Next

but you can't access that controls collection properties such as xx.ubound or xx.count etc... which means you can't load another control.

For instance this won't work

VB Code:
  1. Dim xx As Control
  2.  
  3. For Each xx In Me.Controls
  4.  If TypeOf xx Is TextBox Then
  5.   Load xx.Name(1)
  6.  End If
  7. Next

Even though it is saying Load Text1(1) it still won;t work because you are looping thru the Forms control array and not the controls array itself.

Atleast that's what I think! I could be totaly wrong!