public void CargarHitorial()

        {
            PresupuestoBLL bllPresup = new PresupuestoBLL();
            List <PresupuestoAprobacionBE> Historial = new List <PresupuestoAprobacionBE>();

            Historial = bllPresup.HistorialAnalisis(vPresup);
            BindingList <PresupuestoAprobacionBE> hist = new BindingList <PresupuestoAprobacionBE>(Historial);

            this.dataGridViewAprob.DataSource = null;
            this.dataGridViewAprob.DataSource = hist;

            this.dataGridViewAprob.Columns[0].Visible = false;
        }