- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
s := TStringList.Create;
LocalIniFile.ReadSection(sPad, s);
for x := 0 to ActionListMenu.ActionCount - 1 do
begin
for y := 0 to 9 do
begin
for z := 0 to s.Count - 1 do
begin
if (Length(s[z]) <> Length('Tag0')) and (s[z] = 'Tag' + IntToStr(ActionListMenu[x].Tag + y)) then
begin
try
ActionListMenu[x].Execute;
except
end;
end;
end;
end;
end;
s.Free;
Они лишние!