Registriert seit: 25. Feb 2003
Ort: St. Ingbert
211 Beiträge
Delphi 7 Enterprise
|
Problem beim auslesen eines Subitems von ListView
28. Mai 2004, 15:08
hallo !
Schlagt mich, tretet mich, aber ich steh aufm schlauch *g*
Read Error, irgendwas .. auf jeden kakkt er da beim lesen immer ab
Delphi-Quellcode:
function KeyExists(KeyList: TListView; Key: String): Boolean;
var
i: Integer;
begin
Result := false;
if KeyList.Items.Count > 0 then
begin
for i := 1 to KeyList.Items.Count do
begin
if KeyList.Items.Item[i].SubItems.Strings[0] = Key then
Result := true
else
Result := false;
end;
end;
end;
Programming today is a race between Software Engineers striving to build bigger and better idiot-proof Programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning!
|