Hi all,

could you please someone help me out here, this IS simple, just an object definition that I cannot find.

I've got an MDI form, in which a button creates new forms with this code:


Code:
Dim frmA As Main
Set FrmA As New Main
FrmA.Show
Main is the name of a template form that I use to create all the forms within the MDI.

Now, how can I retrieve the Height property of one of these child forms? I need the object name, i.e. if I need the height of Main I use Main.Height, but in this case what can I use? FrmA.Height within a code doesn't work. I believe something as Parent.Height should exist, if someone knows the right expression

Thank you very much in advance,

W.