[Test]          // Should not throw AOORE
        public void Bug347669()
        {
            Form main = new MainForm();

            main.Show();
            Form frm = new Childform();

            frm.MdiParent = main;
            frm.Show();
            main.Dispose();
        }
		[Test]  // Should not throw AOORE
		public void Bug347669 ()
		{
			Form main = new MainForm ();
			main.Show ();
			Form frm = new Childform ();
			frm.MdiParent = main;
			frm.Show ();
			main.Dispose ();
		}