So I have a bunch of text boxes on a windows form named, "XB1TextBox", "XB2TextBox", "XB3TextBox", etc. all the way up to 30.

I want to populate them with values from an array, called T, that is 30 members long. So in the form load even I have something like this

Dim Count As Integer = 1
For Count = 1 to 30
XB & Count & TextBox.Text = T(Count - 1 )
Next

Line 3 of this code is obviously incorrect... Does anyone have any ideads??? Thank you so much for your help!!

Kevin