I have a Class where i manipulate with one Form. That Form is declared WithEvents:
Code:
Private WithEvents m_frmOwner As Form
Now i would like to expand this and make it into an Array. But i don't know how. Something like:
Code:
Private WithEvents m_frmOwners() As Form
... doesn't work.

Any ideas?