Exemplo n.º 1
0
        private void manageExpenseToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            CloseAll();

            frmManageExpenseTransaction fmExp = new frmManageExpenseTransaction();

            fmExp.MdiParent = this;
            fmExp.Show();
        }
Exemplo n.º 2
0
        private void pictureBox2_Click(object sender, EventArgs e)
        {
            frmManageExpenseTransaction fm = new frmManageExpenseTransaction();

            fm.MdiParent = this.MdiParent;
            fm.Show();

            this.Close();
        }