Ejemplo n.º 1
0
 private void mtbtncaja_Click(object sender, EventArgs e)
 {
     try
     {
         using (FrmCaja frmcaja = new FrmCaja())
         {
             frmcaja.ShowDialog();
         };
     }
     catch (Exception)
     {
         throw;
     }
 }
Ejemplo n.º 2
0
 private void mtbtncaja_Click(object sender, EventArgs e)
 {
     try
     {
         cargar_saldo(Acesso.FrmPorxLogin.CodSucursal);
         using (FrmCaja frcaja = new FrmCaja())
         {
             frcaja.ShowDialog();
         };
     }
     catch (Exception)
     {
         throw;
     }
 }