Hi
Is it possible to create array of a class. 'But a unspecified number of elements

e.g Dim A() as String '(This creates a array of strings with a unspecified number of elements)

But !!

e.g Dim MyForm() As System.Windows.Forms.Form
Dim a As Integer = 2
Redim MyForm(a)
MyForm(1).Text = "Hello" ***No instance of class Form exception occurs****


I cannot reference a instance of a class in the array, any ideas why ?