Is there any way to set the starting size for a child window in a mdi form. Whenever I open the child form it sizes it based on the size of the parent form, instead of using the size I set for it in the designer. I use Form2.Size = New Size(640, 480). Is there another way

Set Starting size for a child form
reukiodo
Two things I don't know: What a "mdi" form is, and what causes your problem.
But in normal windows forms, I have Not experienced your problem, where the design properties are not utilized at Run time.
I have resized windows forms at run time, based on user selection. Could you try (as a work around) to resize the child form at Run time, before the form is displayed
Engr.Faisal
An MDI (Multiple Document Interface) child form can be programmatically sized. After you assign the MDIParent property to it, just prior to "show"ing it, set it's size New Size (640,480)
For those of you confused about this, the MDI is the type of interface that Visual Studio uses (as well as older versions of MS Office, etc). Whereas your document forms are children of your main (parent) form.
Ricardo UY
knightmare
Also, an MDI is a multiple document interface. http://en.wikipedia.org/wiki/Multiple_document_interface