| AddSecs Function | 
Unit
QESBPCSDateTime
Declaration
Function AddSecs(const DT: TDateTime; const Secs: Extended): TDateTime;
| Parameters | 
| DT | Date/Time to process. | 
| Secs | Number of Seconds to Add - can be negative. | 
Category
Date/Time Arithmetic RoutinesImplementation
 
| function AddSecs (const DT: TDateTime; const Secs: Extended): TDateTime;
begin
     Result := DT + Secs * OneDTSecond
End; | 
|  |