ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Date and time functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Indicates whether a day is a public holiday or not. The dates corresponding to public holidays are specified by BankHolidayAdd.
Example
// Define public holidays
BankHolidayAdd("0714")
// Check a public holiday
IF BankHoliday("19700714") = True THEN
Info(DateToString("19700714", maskDateSystem) + " is a public holiday")
END
// Check a date in an Edit control
IF BankHoliday(EDT_Date) = True THEN
Info(DateToString(EDT_Date, maskDateSystem) + " is a public holiday")
END
Syntax
<Result> = BankHoliday(<Date to check>)
<Result>: Boolean
  • True if the specified date corresponds to a public holiday defined by BankHolidayAdd,
  • False otherwise.
<Date to check>: Character string or Date variable
Date to check. If this date corresponds to a string, it must be in YYYYMMDD format (YYYY corresponds to the year, MM to the month and DD to the day).
Business / UI classification: Neutral code
Component: wd290obj.dll
Minimum version required
  • Version 14
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help