Returns a TDateTime that represents 12:00:00:00 AM on the first day of a specified month.
function StartOfAMonth(const AYear: Word; const AMonth: Word): TDateTime;
TDateTime StartOfAMonth(const Word AYear, const Word AMonth);
DateUtils
StartOfAMonth returns the first expressible moment (12:00:000 AM) of the first day of a specified month.
The AYear parameter specifies the year of the desired month.
The AMonth parameter specifies the month. It can range from 1 to 12.
If the parameters do not specify a valid month, StartOfAMonth raises an EConvertError exception.
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|