Sign up for PayPal and start accepting credit card payments instantly. UroBux - A Place to Earn online!

Adbrite header

Showing posts with label delphi month. Show all posts
Showing posts with label delphi month. Show all posts

09 January 2008

Get Last Day in Month

How to get the date of the last day of the systems current month:
~~~~~~~~~~~~~~~~~~~~~~~~~
function LastDayCurrMon: TDate;
begin
result := EncodeDate(YearOf(Now),MonthOf(Now), DaysInMonth(Now)) ;
end;
{Usage:}
ShowMessage(DateToStr(LastDayCurrMon)) ;
~~~~~~~~~~~~~~~~~~~~~~~~~