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

2024年11月28日 20:38
有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是日期