private void proyecciónFuturaDeMovimientosToolStripMenuItem_Click(object sender, EventArgs e) { ProyeccionFutura fut = new ProyeccionFutura(sql, null); fut.ShowDialog(); contenedorCuentasMovimientosFuturos1_actualizarSaldosEvento(); }
void ll_nombreCuenta_Click(object sender, EventArgs e) { LinkLabel ll = (LinkLabel)sender; _Cuenta cuenta = (_Cuenta)ll.Tag; ProyeccionFutura proy = new ProyeccionFutura(cuenta.SQL, cuenta); proy.ShowDialog(); actualizarSaldosEvento(); }