procedure TForm1.Button1Click(Sender: TObject);
const
Year, Month, Day: Word;
begin
// Date = 12/12/2012
DecodeDate(Date, Year, Month, Day);
Label1.Caption := IntToStr(Year); // 2012
Label2.Caption := IntToStr(Month); // 12
Label3.Caption := IntToStr(Day); // 12
end;
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment