コード例 #1
0
        private void supplierToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmSupplierEntry supEntry = new frmSupplierEntry();

            supEntry.MdiParent = this;
            supEntry.Show();
        }
コード例 #2
0
        private void btnNewSupplier_Click(object sender, EventArgs e)
        {
            frmSupplierEntry supEntry = new frmSupplierEntry();

            supEntry.MdiParent = this.MdiParent;
            supEntry.Show();
            Hide();
        }