[RESOLVED] Set Window location of MDI Child in MDI Form
How can i set the default loading location of an MDIChild form inside an MDI form? i would like my MDIChild forms to default to the center of the MDI but i cant achieve this, it seems i can only get it to load in the top left hand corner. any ideas?
Cheers
Re: Set Window location of MDI Child in MDI Form
Never worked with MDI forms, however don't they have a .Top and .Left property like all other controls. If the MDIChild allways show at the top-left corner both properties should have a value of 0. When you create the Child's set these properties to your desired value, that should do it.
Re: Set Window location of MDI Child in MDI Form
no worries ill give it a try.
Re: Set Window location of MDI Child in MDI Form
yup it works if you set the parameters in Form_Load() code but not in the properties box.
cheers this is resolved