AddMins Function
Adds a Floating Point amount of Minutes to a Given Date/Time.

Unit
QESBPCSDateTime

Declaration
Function AddMins(const DT: TDateTime; const Mins: Extended): TDateTime;

Parameters
DT Date/Time to process.
Mins Number of Minutes to Add - can be negative.

Category
Date/Time Arithmetic Routines

Implementation

function AddMins (const DT: TDateTime; const Mins: Extended): TDateTime;
begin
     Result := DT + Mins * OneDTMinute
End;


HTML generated by Time2HELP
http://www.time2help.com