DelphiBasics
SecsPerDay
Constant
Gives the number of seconds in a day SysUtils unit
const SecsPerDay = 86400;
Description
The SecsPerDay constant gives the number of seconds in a day (24 * 60 * 60 = 86400).
Related commands
DaysInAMonthGives the number of days in a month
DaysInAYearGives the number of days in a year
MinsPerDayGives the number of minutes in a day
MonthDaysGives the number of days in a month
 Download this web site as a Windows program.




 
Example code : Show the number of minutes and seconds in a week
begin
  ShowMessage('Number of minutes in a week = '+IntToStr(MinsPerDay*7));
  ShowMessage('Number of seconds in a week = '+IntToStr(SecsPerDay*7));
end;
Show full unit code
  Number of minutes in a week = 10080
  Number of seconds in a week = 604800
 
Delphi Programming © Neil Moffatt . All rights reserved.  |  Home Page