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