SmartPascal
Yesterday
Function
Gives the date yesterday DateUtils unit
 function Yesterday : TDateTime;
Description
The Yesterday function returns yesterdays date in the local time zone.
 
Because the return value is a TDateTime type, the time component is set to zero.
 
The TDateTime type can be processed by many SysUtil and Dateutils routines.(start of day).
Related commands
Date Gives the current date
Now Gives the current date and time
Time Gives the current time
Tomorrow Gives the date tomorrow
 
Example code : Show yesterday, today and tomorrows dates
// Full Unit code.
// -----------------------------------------------------------
// You must store this code in a unit called Unit1 with a form
// called Form1 that has an OnCreate event called FormCreate.
 
unit Unit1;
 
interface
 
uses
  DateUtils,   // Unit containing the Yesterday command
  SysUtils,
  Forms, Dialogs;
 
type
  TForm1 = class(TForm)
    procedure FormCreate(Sender: TObject);
  end;
 
var
  
Form1: TForm1;
 
implementation
{$R *.dfm} // Include form definitions
 
procedure TForm1.FormCreate(Sender: TObject);

begin
  ShowMessage('Yesterday = '+DateToStr(Yesterday));
  ShowMessage('Today     = '+DateToStr(Date));
  ShowMessage('Tomorrow  = '+DateToStr(tomorrow));

  ShowMessage('Yesterday''s time = '+TimeToStr(Yesterday));
end;
 
end.
Hide full unit code
   Yesterday = 28/10/2002
   Today     = 29/10/2002
   Tomorrow  = 30/10/2002
   Yesterday's time = 00:00:00