示例#1
0
        private void btn_dfactura_Click(object sender, EventArgs e)
        {
            DFactura DFactura = new DFactura();

            this.Hide();
            DFactura.Show();
        }
示例#2
0
        private void btn_add_producto_Click(object sender, EventArgs e)
        {
            DFactura     DF  = new DFactura();
            DialogResult res = DF.ShowDialog();

            if (res == DialogResult.OK)
            {
                CargarOrden(DF.codigo, DF.nombre, DF.cantidad, DF.vlrUnit, DF.valor, DF.iva, DF.subtotal);
            }
        }