
Newbie Question - Center MDI child form
you can define a function like this and call from Child Form_Load event
CenterChild (MDIForm1,Form1)
Public Sub CenterChild(MDI, Child )
Child.Left = (MDI.ScaleWidth - Child.Width) / 2
Child.Top = (MDI.ScaleHeight - Child.Height) / 2
End Sub