So say I have 10 buttons on my form named btn1, btn2, btn3, etc. And I want to set each of their text properties to something. So I do something like:
For i = 1 To 10
//something like:
["btn" & i].text = 'blah' //hope you understand what I meant here
Next
Can this also be done with variables? Like I have var1, var2, var3, etc. And if I wanted to control each of them, can I do it in a loop and not one by one?