There has got to be some kind of orderly way that I can refer to the textbox text. I tried storing
this.richTextBox1(2,3,4,5,6,7,...).Text in an object array but it was like a variable instead of the actual text box text. Here is an example of what I am trying to avoid:
holdIt=SR.ReadToEnd(); SR.Close(); ClearTBs(); this.richTextBox1.Text=holdIt[0]; this.richTextBox2.Text=holdIt[1]; this.richTextBox3.Text=holdIt[2]; this.richTextBox4.Text=holdIt[3];
I would like to put it in a for loop instead and just write:
?Write in textbox?=holdIt;