Hello,

I'm pretty new to VB

I would like loop through control names at run time. Is it possible to do something like the following:
Code:
Dim n As Integer
n = 0

For n 0 to 15
 Textbox1.Text &= CStr(button(n).name & Environment.Newline
next n
Is something like this possible? If so, what is the correct syntax?

Thank you