Вниз
Скачать: CL | DM;

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

 
McSimm2   (2003-12-04 11:13) [0]

Можно отсортировать данные в TListe по 2 полям ?


 
Digitman ©   (2003-12-04 11:20) [1]

да хоть по 20-ти


 
Anatoly Podgoretsky ©   (2003-12-04 11:26) [2]

Только в TList нет 2 полей, это всего список указателей.


 
McSimm2   (2003-12-04 11:34) [3]

Anatoly Podgoretsky © (04.12.03 11:26) [2]
Да, точно, конечно же...

Подскажите, плиз, как сделать сортировку по 2 полям.



PReportRecord = ^TReportRecord;
TReportRecord = record
Month, Year: String;
....
end;

procedure TFrm_main.SortList();

function CompareListItems(Item1, Item2: Pointer): Integer;
var
RecA: PReportRecord absolute Item1;
RecB: PReportRecord absolute Item2;
begin
if RecA^.Year < RecB^.Year then
Result := -1 else
if RecA^.Year = RecB^.Year then
Result := 0 else
Result := 1;
end;

begin
FReportList.Sort(@CompareListItems);
end;


Как сделать что бы отсортировалось по году(1) и по месяцу(2) ???


 
Семен Сорокин ©   (2003-12-04 11:38) [4]

наверное так:

function CompareListItems(Item1, Item2: Pointer): Integer;
var
RecA: PReportRecord absolute Item1;
RecB: PReportRecord absolute Item2;
begin
if RecA^.Year < RecB^.Year then
Result := -1
else if RecA^.Year > RecB^.Year then
Result := 1
else if RecA^.Month < RecB^.Month then
Result := -1
else if RecA^.Month > RecB^.Month then
Result := 1
else
Result := 0
end;


 
gek ©   (2003-12-04 11:39) [5]

Попробуй так

if RecA^.Year < RecB^.Year then
begin
if RecA^.Month < RecB^.Month then
....
end


 
McSimm2   (2003-12-04 11:42) [6]

Семен Сорокин © (04.12.03 11:38) [4]
Большое спасибо - всё OK

Всем спасибо!



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

Скачать: CL | DM;



Память: 0.46 MB
Время: 0.017 c
1-52267
lipskiy
2003-11-30 20:36
2003.12.16
Приложение загружает ЦП на 100%, как побороть?


14-52359
Думкин
2003-11-23 05:18
2003.12.16
С днем рождения! 23 ноября.


3-52057
The X
2003-11-23 23:56
2003.12.16
Вопрос по корректной работе с датами в SQL - еще раз.


1-52189
Anton.
2003-12-03 12:50
2003.12.16
Как можно избавится от перебора?


14-52396
Knight
2003-11-15 18:26
2003.12.16
Win2k Server...




   Наверх