vb中获取电脑系统时间和日期信息的函数是什么

2024-11-28 20:38:26
推荐回答(3个)
回答(1):

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

回答(2):

now是日期和时间

回答(3):

time是时间
date是日期