Registriert seit: 10. Jun 2002
Ort: Unterhaching
11.412 Beiträge
Delphi 12 Athens
|
10. Apr 2003, 13:02
Zwei Änderungen:
Code:
constructor TTest.Create;
var
i: Integer;
begin
[color=#1100ff]// einfügen
inherited;[/color]
for i := 0 to 4 do
begin
FEmployment[ i ].FWorkInstruction := '';
FEmployment[ i ].FDuration := 0;
FEmployment[ i ].FDepartment := '';
end;
FEmployment[ 0 ].FWorkInstruction := 'Test';
end;
// und
// anstatt
Monatg.Create
// musst Du folgendes schreiben:
[color=#1100ff]Montag := TTest.Create;[/color]
... ...
Daniel Lizbeth Ich bin nicht zurück, ich tue nur so
|