...eine TDate Variable in Tag/Monat/Jahr aufteilen?

Autor: Simon Grossenbacher
Homepage: http://www.swissdelphicenter.ch

Kategorie: Mathematik

procedure TForm1.Button1Click(Sender: TObject);
const
  
Year, Month, Day: Word;
begin
  
// Date = 12/12/2001
  
DecodeDate(Date, Year, Month, Day);
  Label1.Caption := IntToStr(Year);  // 2001
  
Label2.Caption := IntToStr(Month); // 12
  
Label3.Caption := IntToStr(Day);   // 12
end;

 

printed from
www.swissdelphicenter.ch
developers knowledge base