it would save me a lot of lines if I could just loop every time i needed to fill all the text boxes

for ex (not actual code)
Code:
dim mynum(0-10) as Integer
?dim textbox(0-10) ???
dim varnum as int
varnum = 0


Do
    mynum(varnum) = 11
    Textbox(varnum).Text = mynum(varnum)
varnum += 1
loop until varnum = 10
something like that so I don't have to keep typing out
TextBox1.Text = 10
TextBox2.Text = 10
....

every time I want to fill all the textboxes

any help?

.Net version 4.0

Thanks again for all the help you guy's have given me!