Welcome to WindowsClient.net | Sign in | Join
Home > Learn > Windows Forms FAQs
Here are some frequently asked questions about Windows Forms and their answers.
You can do this by setting the child form's TopMost to False and setting its Owner property to the Main Form.
Form1 f = new Form1(); f.TopMost = false; f.Owner = this; f.Show();
Contributed from George Shepherd's Windows Forms FAQ