Registriert seit: 10. Sep 2004
Ort: Dülmen
464 Beiträge
Delphi 7 Professional
|
Re: Eigene Klasse
28. Sep 2005, 14:16
Code:
function count : Integer;
begin
result := Length(items);
end;
- edit-
oder du machst es per property
Code:
Tmp3list = class
private
items: Array of tdsatz;
function GetCount: Integer;
public
procedure adddir(Pfad: String; FertigeListe: Tmp3list);
property count: Integer read GetCount;
end;
---
function Tmp3list.GetCount: Integer;
begin
Result := Length(items);
end;
Stefan "Geht nicht!" ist keine Fehlerbeschreibung und "Hab ich schon versucht!" keine Antwort!
Hey, it compiles! Ship it!
|