Hello everyone on vbforums
I have a array of 10 coboboxes and 10 textboxes.
I am doing something like this:
But I wonder if I can do that in a loop
I have a array of 10 coboboxes and 10 textboxes.
I am doing something like this:
Code:
If Index = 1 then text1(1).text = combo1(1).text
Code:
Dim i As Integer
For i = 1 To 10
Text1(i).Text = Combo1(i).Text
Next i