private void CashSaleTotal_Load(object sender, EventArgs e)
        {
            //Hide the text box of the first radio button
            txtCash.Hide();
            txtTotal.Show();
            txtTotal.Select();  //To enter the total of the customer


            csc     = new CashSaleClass();
            cash    = new CashSale();
            changeC = new CashChange();
        }
Exemple #2
0
 private void CashSale_Load(object sender, EventArgs e)
 {
     csc = new CashSaleClass();
 }