I'm new to all this VS stuff - please bear with me

Is there an easy way to loop through a largish number of TextBoxes to change their text. Currently I have:
Code: Select all
TextBox1.Text = strText
TextBox2.Text = strText
TextBox3.Text = strText
TextBox4.Text = strText
Code: Select all
For intN = 1 to 4
TextBoxintN.Text = strText
Next