
Is an array of forms possible?
Read about the Form collection.
But you can use:
dim x as form ' set x to be of type form
for each x in forms ' look in the forms collection and exctract one x (form)
with each pass round the loop
debug.print x.name ' print the name of the form in the debug window.
next ' get the next form (if there is one)
There are other ways also but this might do what you want
Quote:
> I have a number of MDIChild forms that I have to cycle through. Instead
> of refering to them as MyForm1, MyForm2, etc. is there a way I can refer
> to them as MyForm(Index) or something similar?