ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Version: 2026

Managing dates and times
WINDEV, WEBDEV and WINDEV Mobile propose several methods for managing dates and times in your applications...
InDays (Property)
The InDays property is used to convert a Duration variable to days.
InMinutes (Property)
The InMinutes property is used to convert a Duration variable to minutes.
<DateTime type>.ToString (Function)
Converts a DateTime to string in the specified format.
TimeSys (Function)
Returns or modifies the system time (current time defined for the current computer).
<Chrono>.Start (Function)
Starts a stopwatch to measure the duration of a process (in milliseconds) and resets a running stopwatch.
CurrentYear (Function)
Returns the current year in integer format.
<Chrono>.Reset (Function)
Stops and resets a running stopwatch.
ChronoEnd (Function)
Stops a stopwatch and returns the time elapsed (in milliseconds) since the start of timing (call to ChronoStart).
<Chrono>.End (Function)
Stops a stopwatch and returns the time elapsed (in milliseconds) since the start of timing (call to <Chrono>.Start).
<Chrono>.Resume (Function)
Resumes a stopwatch previously stopped by <Chrono>.Fin or <Chrono>.Pause.
ChronoReset (Function)
Stops and resets a running stopwatch.
ChronoStart (Function)
Starts a stopwatch to measure the duration of a process (in milliseconds) and resets a running stopwatch.
Configuring the Project Management Hub
The Project Management Hub allows you to configure......
DateToMonthInAlpha (Function)
Returns the name of the month that corresponds to a specified date.
DateToDayInAlpha (Function)
Returns the name of the day that corresponds to a specified date.
IntegerToDay (Function)
Returns the day of the week corresponding to the specified date (this date is an integer).
ChronoResume (Function)
Restarts a stopwatch that was stopped by ChronoEnd or ChronoPause.
DateToInteger (Function)
Converts a date to an integer.
IntegerToWeekNumber (Function)
Returns the week number within the year that corresponds to the specified date (this date is an integer).