Kod: Tümünü seç
function YilAyGun (Index: Integer): Integer;
var
Yil, Ay, Gun: Word;
Begin
DecodeDate(Date, Yil, Ay, Gun);
case Index of
1: Result := Yil;
2: Result := Ay;
3: Result := Gun;
End;
End;
Kod: Tümünü seç
Label1.Caption:= inttostr(YilAyGun (1));
Label2.Caption:= inttostr(YilAyGun (2));
Label3.Caption:= inttostr(YilAyGun (3));