Ver Mensaje Individual
  #5  
Antiguo 06-07-2006
Avatar de seoane
[seoane] seoane is offline
Miembro Premium
 
Registrado: feb 2004
Ubicación: A Coruña, España
Posts: 3.717
Reputación: 24
seoane Va por buen camino
Si no encuentras una solucion mejor puedes eliminar los elementos repetidos:

Código Delphi [-]
var
  i: integer;
begin
  i:= 0;
  with Listbox1.Items do
    while Count > i do
    begin
      if IndexOf(strings[i])<>i then
        Delete(i)
      else
        inc(i);
    end;
end;
Responder Con Cita