I have a very simple for loop statement as shown below. How to display each value to a corresponding textbox using an array or list? In my loop I have 6 indexes and I have also 6 textboxes, which means index 0 will be displayed in txtbox1, index 1 will be displayed in txtbox2 so on and so forth.
Dim i As Integer
For i = 0 To 5
' TextBox Here
Next