I need to know how to make a control array in the Form_Load() sub routine. I am trying to make a platform game that is totally random in fact, that nothing is similar in each execution of the program.

So far I have this as my source code:
Code:
Dim i as Integer

Public Sub Form_Load()
For i = 0 to 99

End Sub