阅读量:0
您可以使用以下代码来使用FormatDateTime函数来格式化时间:
Dim currentTime As Date currentTime = Now Dim formattedTime As String formattedTime = FormatDateTime(currentTime, vbLongTime) MsgBox "当前时间为:" & formattedTime
这段代码将当前时间格式化为长时间格式,并显示在一个消息框中。您可以根据自己的需求选择不同的时间格式,例如vbShortTime表示短时间格式,vbLongDate表示长日期格式等。更多关于FormatDateTime函数的详细用法可以参考相关的文档或教程。