private void makeSaleToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.Hide();
            POSForm frmPOS = new POSForm("", "", 1, "", "", "", "", "", "", "", "");

            frmPOS.ShowDialog();
        }
Ejemplo n.º 2
0
        private void btnPOS_Click(object sender, EventArgs e)
        {
            this.Hide();
            POSForm frmPOS = new POSForm(Emp_Username, Emp_Password, Emp_ID, "", "", "", "", "", "", "", "");

            frmPOS.ShowDialog();
            this.Close();
        }
Ejemplo n.º 3
0
        private void btnAddInventoryItem_Click(object sender, EventArgs e)
        {
            POSForm frmSale = new POSForm("", "", 1, null, null, null, null, txtSalesDescription.Text, txtSalesQuantity.Text, txtSalesPrice.Text, txtSalesDiscount.Text);

            frmSale.Show();
        }