|
|
|
|
|
<Date type>.ToMonthInAlpha (Function) In french: <Type Date>.VersMoisEnLettre Returns the name of the month that corresponds to a specified date. MaDate is Date = DateSys()
SAI_Date = MaDate.ToDayInAlpha() + " " + MaDate.Day + ...
" " + MaDate.ToMonthInAlpha() + " à " + ...
TimeToString(TimeSys(), "HH:MM:SS")
Syntax
<Result> = <Date>.ToMonthInAlpha()
<Result>: Character string Month corresponding to the specified date: January, February, March, April, May, June, July, August, September, October, November, December. Note The month returned depends on the language options specified for dates in the "Languages" tab of the project description (in the "Project" pane, in the "Project" group, click on "Description"):- If the project uses the language options of Windows for the dates, the month will be returned in the language of Windows.
- If the project uses specific parameters for the dates (for one or more languages), the month returned will correspond to the one specified in the project description.
<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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|