DecodeDate
Adam Boduch
DecodeDate
Moduł: SysUtils
procedure TMyForm.MyButtonClick(Sender: TObject);
var
wYear, wMonth, wDay : Word;
begin
DecodeDate(Now, wYear, wMonth, wDay);
Label1.Caption := 'Mamy ' + IntToStr(wMonth) + ' miesiąc roku ' + IntToStr(wYear) + ', dnia ' +
IntToStr(wDay);
end;
Zobacz też: