VB中日期函数总汇及用法?????????

2024-12-18 20:15:11
推荐回答(3个)
回答1:

vb中所有日期与时间关键字总结:

作用 关键字
设置当前日期或时间。 Date ,Now, Time
计算日期。 DateAdd, DateDiff, DatePart
返回日期。 DateSerial, DateValue
返回时间。 TimeSerial, TimeValue
设置日期或时间。 Date, Time
计时。 Timer

用法可以网上搜索或者看MSDN

回答2:

设置当前日期或时间。 Date ,Now, Time
设计格式:format (date,"ddddd") 显示例如 2011年3月5日
format (date,yyyy-mm-dd) 显示例如 2011-3-5

回答3:

000