Thema
:
Delphi
Popup menü items sortieren?
Einzelnen Beitrag anzeigen
toms
(CodeLib-Manager)
Registriert seit: 10. Jun 2002
4.648 Beiträge
Delphi XE Professional
#
17
Re: Popup menü items sortieren?
19. Jun 2008, 16:33
Hier mal ein Vorschlag:
zusammenfalten
·
markieren
Delphi-Quellcode:
procedure
SortPopupMenu(PopupMenu: TPopupMenu);
var
n1, n2: Integer;
mi: TMenuItem;
begin
with
PopupMenu, Items
do
begin
for
n1 := 0
to
Count - 1
do
begin
for
n2 := n1 + 1
to
Count - 1
do
begin
if
Items[n1].Caption > Items[n2].Caption
then
begin
mi := Items[n2];
Delete(n2);
Insert(n1, mi);
end
;
end
;
end
;
end
;
end
;
Thomas
Zitat
toms
Öffentliches Profil ansehen
Mehr Beiträge von toms finden