예제 #1
0
파일: Form1.cs 프로젝트: imcber/PVMOM
        private void btnCobrar_Click(object sender, EventArgs e)
        {
            Cobrar fr = new Cobrar();

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

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