Exemple #1
0
        private void transactionsToolStripMenuItem_Click(object sender, EventArgs e)
        {
            TransactionsForm child = new TransactionsForm();

            child.MdiParent = this;
            child.Show();
        }
Exemple #2
0
        private void btnShowTrans_Click(object sender, EventArgs e)
        {
            TransactionsForm child = new TransactionsForm();

            child.MdiParent = this.MdiParent;
            child.Show();
        }
 private void btnShowTrans_Click(object sender, EventArgs e)
 {
     TransactionsForm child = new TransactionsForm();
     child.MdiParent = this.MdiParent;
     child.Show();
 }
 private void transactionsToolStripMenuItem_Click(object sender, EventArgs e)
 {
     TransactionsForm child = new TransactionsForm();
     child.MdiParent = this;
     child.Show();
 }