Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2004.05.30;
Скачать: CL | DM;

Вниз

TList.Sort   Найти похожие ветки 

 
Lera   (2004-05-17 11:32) [0]

Подскажите пожалуйста, как сортировать численный спиок в StringGrid с помощью TList.Sort по убыванию.Спасибо.


 
[lamer]Barmaglot ©   (2004-05-17 11:54) [1]

Ну примерно так...


function TListSortCompare(Item1, Item2: Pointer): Integer;
begin
if integer(item1)>=integer(item2) then result:=0 else result:=1;
end;

procedure TForm1.Button1Click(Sender: TObject);
var
 t:    TList;
 k:    integer;
begin
t:=TList.Create;
t.Add(@Form1);
t.Add(@button3);
t.Add(@button1);
t.Add(@button2);
t.Sort(TListSortCompare);

For k:=0 to t.Count-1 do
 listbox1.Items.Add(inttostr(Integer(t.Items[k])));

t.Destroy;
end;



Страницы: 1 вся ветка

Текущий архив: 2004.05.30;
Скачать: CL | DM;

Наверх




Память: 0.46 MB
Время: 0.053 c
7-1083218538
Aplay
2004-04-29 10:02
2004.05.30
Из одного типа в друго


1-1084780020
Dysan
2004-05-17 11:47
2004.05.30
Invalid pointer operation


1-1084942347
Алексей Петухов
2004-05-19 08:52
2004.05.30
Маштаб TBitMap


14-1084265615
dragonGlad
2004-05-11 12:53
2004.05.30
Работа с VSS


1-1084869046
evvcom
2004-05-18 12:30
2004.05.30
Вопрос по редактору кода