Beispiel #1
0
        private void btnCobrar_Click(object sender, EventArgs e)
        {
            Cobrar fr = new Cobrar();

            fr.Owner = this;
            fr.Show();
        }
Beispiel #2
0
        private void RealizaVenta()
        {
            SystemSounds.Asterisk.Play();
            if (listSale.Items.Count != 0)
            {
                venta.makeSale();

                Cobrar cobrar = new Cobrar();
                cobrar.Show();
            }
        }