I'm not sure how to make concatenate inside a loop in the same way as this:
For x As Integer = 1 to 10
Me.Button & x & .top = 0
Next
instead of:
Me.Button1.top = 0
...
Me.Button10.top = 0
Any suggestions would be much appreciated, Thanks :)