
Mejor respuesta Agustin Ortu , 20 octubre 2016 - 12:19
No, el problema no es que te borra todos. Estas saliendo de tu procedimiento sin ejecutar Fotos.Items.EndUpdate;
Refactorizando:
procedure TFDatosVME.QuitaFoto(Lista: TStringList; Fotos: TListView); var i: Integer; begin Fotos.Items.BeginUpdate; try for i := Fotos.Items.Count - 1 downto 0 do begin if Fotos.Items[i].Selected then begin Lista.Add(TNodoFoto(Fotos.Items[i].Data).Ubicacion); cdsFotos.First; while not cdsFotos.Eof do begin if cdsFotos.FieldByName('veh_fotos').AsString = TNodoFoto(Fotos.Items[i].Data).Nombre then begin Fotos.Items[i].Delete; cdsFotos.Delete; Exit; end; cdsFotos.Next; end; end; end; finally Fotos.Items.EndUpdate; end; end;
Ir al mensaje completo
