private void buttonMenuStockOut_Click(object sender, EventArgs e)
        {
            StockOut StkOut = new StockOut();

            MainClass.ShowWindow(StkOut, this, MDI.ActiveForm);
        }
        private void buttonMenuProducts_Click(object sender, EventArgs e)
        {
            Product products = new Product();

            MainClass.ShowWindow(products, this, MDI.ActiveForm);
        }
        private void buttonMenuRecv_Click(object sender, EventArgs e)
        {
            POReceiving por = new POReceiving();

            MainClass.ShowWindow(por, this, MDI.ActiveForm);
        }
        private void buttonMenuStockIn_Click(object sender, EventArgs e)
        {
            StockIn stkin = new StockIn();

            MainClass.ShowWindow(stkin, this, MDI.ActiveForm);
        }
        private void buttonMenuStock_Click(object sender, EventArgs e)
        {
            stocks st = new stocks();

            MainClass.ShowWindow(st, this, MDI.ActiveForm);
        }
        private void buttonMenuSales_Click(object sender, EventArgs e)
        {
            Sales sale = new Sales();

            MainClass.ShowWindow(sale, this, MDI.ActiveForm);
        }
        private void buttonMenuPO_Click(object sender, EventArgs e)
        {
            PurchaseOrder PO = new PurchaseOrder();

            MainClass.ShowWindow(PO, this, MDI.ActiveForm);
        }
        protected override void buttonBack_Click(object sender, EventArgs e)
        {
            stocks obj = new stocks();

            MainClass.ShowWindow(obj, this, MDI.ActiveForm);
        }
예제 #9
0
        protected override void buttonBack_Click(object sender, EventArgs e)
        {
            HomeScreen obj = new HomeScreen();

            MainClass.ShowWindow(obj, this, MDI.ActiveForm);
        }