private void LoginForm_Load(object sender, EventArgs e) { TransactionForm newMDIChild = new TransactionForm(); newMDIChild.MdiParent = this; newMDIChild.Show(); }
private void transactionMenuItem_Click(object sender, EventArgs e) { TransactionForm newMDIChild = new TransactionForm(); newMDIChild.MdiParent = this; newMDIChild.Show(); }