Welcome to WindowsClient.net | Sign in | Join
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