|
|
|
|
|
<Date type>.ToDay (Function) In french: <Type Date>.VersJour Returns the day that corresponds to a given date.
MyDate is Date MyDate = "20011225" MyDate.ToDay() // Returns 2 Â MyDate = DateSys IF MyDate.ToDay() > 5 THEN Info("It's the weekend") END
Syntax
<Result> = <Date>.ToDay()
<Result>: Integer Number corresponding to the day of the week for the specified date: 1 - Monday 2 - Tuesday 3 - Wednesday 4 - Thursday 5 - Friday 6 - Saturday 7 - Sunday <Date>: Date variable or DateTime variable Date to use. This date can correspond to: - a Date variable.
- a DateTime variable. In this case, only the date is taken into account.
Remarks The date storage format allows you to store dates from 01/01/0001 to 12/31/9999.
Related Examples:
|
Unit examples (WINDEV): Management of dates
[ + ] Using the Date type of WLanguage and the functions for handling dates.
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|