Is it possible to create an array of forms, the way you would with objects? If so tell me what i am doing wrong:

for i = 1 to 10
dim FormX(i) as new form1
formX(i).show
next i

then after the forms are created i want to be able to control them in a loop, without having to control each one seprate:

for x = 1 to 10
formX(x).top = 10
next x

I'm pretty sure it can be done, im just very confused.