Social Icons

Pages

Decode TDate

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;

0 comments:

Post a Comment

 
Blogger Templates