I create a new form and call from the parent form as follows:
loginForm = new SubLogin(); loginForm.Show();
I need to display the chi
Make a Windows Form , then put option for it : CenterParent then use this Code :
yourChildFormName x = new yourChildFormName(); x.ShowDialog();