home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / Misc / Date1.pas < prev    next >
Pascal/Delphi Source File  |  1998-04-22  |  293b  |  13 lines

  1. procedure TForm1.Button1Click(Sender: TObject);
  2. var
  3.   D1, D2: TDateTime;  // Date variables
  4.   I: Integer;         // for-loop variable
  5. begin
  6.   D1 := StrToDate('1/31/98');
  7.   for I := -12 to 12 do
  8.   begin
  9.     D2 := IncMonth(D1, I);
  10.     ListBox1.Items.Add(DateToStr(D2));
  11.   end;
  12. end;
  13.