Create Textbox in run time problem
i have create a textbox in the run time the code like below:
TempCode_TextBox = New TextBox
TempCode_TextBox.Location = New System.Drawing.Point(136, 16)
TempCode_TextBox.Size = New System.Drawing.Size(100, 22)
TempCode_TextBox.ReadOnly = True
TempCode_TextBox.Name = "TempCode_TextBox" & TempX & ""
TempCode_TextBox.Text = Me.code_TextBox.Text
the TempX is for the looping number
example like TempCode_TextBox1,TempCode_TextBox2,TempCode_TextBox3
after i have create the 3 textbox how can i get all the value or data in the textbox that i create in the run time
can i use the for loop statement to get all the value ??