If all you want is to add controls at runtime...
For x = 1 To 20
txt = New textbox()
With txt
AddHandler .GotFocus, AddressOf txtClick
.Text = "Textbox " & x.tostring
.Location = New Point(0, x * 25)
.Size = New Size(200, 60)
End With
Controls.Add(txt)
Next