Ejemplo n.º 1
0
        private void actualizar_btn_Click(object sender, EventArgs e)
        {
            Program.VerDetalles = false;
            ModificarVehiculoForm form = new ModificarVehiculoForm();

            form.ShowDialog();
            ObtenerDetallesVehiculo();
            LLenarDtgComponentes();
            LLenarDtgGastos();
            LLenarDtgFacturas();
            CalcularTotales();
            Permisos();
        }
Ejemplo n.º 2
0
        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            Program.VerDetalles = true;

            ModificarVehiculoForm form = new ModificarVehiculoForm();

            form.ShowDialog();
            ObtenerDetallesVehiculo();
            LLenarDtgComponentes();
            LLenarDtgGastos();
            LLenarDtgFacturas();
            CalcularTotales();
            Permisos();
        }