Ver Mensaje Individual
  #11  
Antiguo 06-07-2007
Avatar de roman
roman roman is offline
Moderador
 
Registrado: may 2003
Ubicación: Ciudad de México
Posts: 20.269
Reputación: 10
roman Es un diamante en brutoroman Es un diamante en brutoroman Es un diamante en bruto
Y para emular el MoveSelection, si no se cuenta con él:

Código Delphi [-]
procedure MoveSelection(Source, Dest: TListBox);
var
  I: Integer;

begin
  for I := Pred(Source.Count) downto 0 do
    if Source.Selected[i] then
    begin
      Dest.Items.Add(Source.Items[i]);
      Source.Items.Delete(I);
    end;
end;

// Saludos
Responder Con Cita