I am using a MDI parent form that has a childs and they show up very well when they are called up by this parent and i use to intensiate child form as
ChildForm
write this code in a parent form....
childform obj = new childform( ); obj.MdiParent = this; obj.StartPosition = FormStartPosition.CenterScreen; obj.Show( );