private void mnuSales_Click(object sender, EventArgs e) { Transactiontype = "Sales"; Inventory.Transactions.frm_Transactions f = new Inventory.Transactions.frm_Transactions(); f.MdiParent = this; f.Show(); }
private void mnuPurchaseReturn_Click(object sender, EventArgs e) { Transactiontype = "PurchaseReturn"; Inventory.Transactions.frm_Transactions f = new Inventory.Transactions.frm_Transactions(); f.MdiParent = this; f.Show(); }
private void purchaseReturnOrderToolStripMenuItem_Click(object sender, EventArgs e) { Transactiontype = "PRO"; Inventory.Transactions.frm_Transactions f = new Inventory.Transactions.frm_Transactions(); f.MdiParent = this; f.Show(); }