请教一个delphi日期减去一个常数的问题,怎么求得:2006-10-30前3个月是哪个月?(16分)

  • 主题发起人 主题发起人 wuifc002
  • 开始时间 开始时间
W

wuifc002

Unregistered / Unconfirmed
GUEST, unregistred user!
请教一个delphi日期减去一个常数的问题,怎么求得:2006-10-30前3个月是哪个月?
2006-01-30 的前3个月是哪个月?
delphi理有没有这类函数?
 
IncMonth(date, -3)
 
IncMonth(strtodatetime('2006-10-30'),-3)
 
给分吧
var
Date1:TDate;
begin
Date1:=IncMonth(StrToDateTime('2006-11-7'),6);
ShowMessage(DateTimeToStr(date1));//date1为半年(6个月)后的日期!
end;
 
IncMonth(const Date: TDateTime; NumberOfMonths: Integer = 1): TDateTime;
 
分少 不好意思
问题解觉了
 
后退
顶部