
Centering child form in MDI
Add these two lines of code to the Form's load event:
Left = (MDIForm1.ScaleWidth - Width) / 2
Top = (MDIForm1.ScaleHeight - Height) / 2
Jason Bouzane
Quote:
> How do I center a child form for different resolutions? Is there a
> particular function to do this?