private void label8_Click(object sender, EventArgs e)
        {
            TransectionReports tr = new TransectionReports();

            tr.MdiParent = MdiParent;
            tr.Show();
        }
Example #2
0
        private void transectionReportsToolStripMenuItem_Click(object sender, EventArgs e)
        {
            TransectionReports tr = new TransectionReports();

            tr.MdiParent     = this;
            tr.StartPosition = FormStartPosition.CenterParent;
            tr.Show();
        }