vb中获取电脑系统时间和日期信息的函数是什么
3个回答
展开全部
Q:如何用VBA代码分别提取系统时间中的年月日?
A:可以使用Year、Month和Day函数提取,亦可用Format函数:
方法一:
Sub 年月日()
MsgBox Year(Date)
MsgBox Month(Date)
MsgBox Day(Date)
End Sub
方法二:
Sub 年月日()
MsgBox Year(Now())
MsgBox Month(Now())
MsgBox Day(Now())
End Sub
方法三:
Sub 年月日()
MsgBox Format(Now(), "yyyy")
MsgBox Format(Now(), "m")
MsgBox Format(Now(), "d")
End Sub
A:可以使用Year、Month和Day函数提取,亦可用Format函数:
方法一:
Sub 年月日()
MsgBox Year(Date)
MsgBox Month(Date)
MsgBox Day(Date)
End Sub
方法二:
Sub 年月日()
MsgBox Year(Now())
MsgBox Month(Now())
MsgBox Day(Now())
End Sub
方法三:
Sub 年月日()
MsgBox Format(Now(), "yyyy")
MsgBox Format(Now(), "m")
MsgBox Format(Now(), "d")
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
time是时间
date是日期
date是日期
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询