//VERIFICA QUE LA CELDA SELECCIONADA SEA DE TIPO CHECKBOX
 private void dgvStandingOrder_CurrentCellDirtyStateChanged(object sender, EventArgs e)
 {
     if (GRIDVIEWTIPOSPAGOS.CurrentCell is DataGridViewCheckBoxCell)
     {
         GRIDVIEWTIPOSPAGOS.CommitEdit(DataGridViewDataErrorContexts.Commit);
     }
 }
 //CONCLUSION DE LA EDICION DEL DATAGRIDVIEW
 private void dgvStandingOrder_CellEndEdit(object sender, DataGridViewCellEventArgs e)
 {
     GRIDVIEWTIPOSPAGOS.CommitEdit(DataGridViewDataErrorContexts.Commit);
 }