AddMonths

给日期值加上指定的月数。

语法:

AddMonths(Value)

Value: 要加上的月数,可以是负数也可以是正数。

例如:

Dim d As Date = #2/28/2008#
Dim
d1 As Date = d.
AddMonths(10) '加上10个月
Dim
d2
As Date = d.AddMonths(-10) '减去10个月
Output.Show(
"10个月后的日期:" & d1)
Output.Show(
"10个月前的日期:"
& d2)


本页地址:http://www.foxtable.com/webhelp/topics/0259.htm