maxpic55 Posted December 18, 2002 Posted December 18, 2002 Hello, How can I center the mdi child in the mdi client? Thank you. Quote
*Experts* Volte Posted December 18, 2002 *Experts* Posted December 18, 2002 Dim frm As New Form2() frm.MdiParent = Me frm.Show() frm.Location = New Point((Me.ClientSize.Width - frm.Width) / 2, _ (Me.ClientSize.Height - frm.Height) / 2) From within the MDI form. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.