I create a new form and call from the parent form as follows:
loginForm = new SubLogin(); loginForm.Show();
I need to display the chi
When launching a form inside an MDIForm form you will need to use .CenterScreen instead of .CenterParent.
MDIForm
.CenterScreen
.CenterParent
FrmLogin f = new FrmLogin(); f.MdiParent = this; f.StartPosition = FormStartPosition.CenterScreen; f.Show();