Exemple #1
0
        private void btn_facturar_Click(object sender, EventArgs e)
        {
            this.Hide();
            frmFactura factura = new frmFactura(user);

            factura.Show();
        }
Exemple #2
0
 private void btRentar_Click(object sender, EventArgs e)
 {
     Formularios.frmFactura factura = new Formularios.frmFactura(user);
     factura.Show();
     this.Hide();
 }