格式化MeetingItem开始日期和结束日期

时间:2018-05-22 09:06:17

标签: vba outlook-vba

如果我理解正确的话,

document.querySelectorAll('div#container button:first-child'); <div id="container"> <div id="switcher" class="switcher"> <h3>Style Switcher</h3> <button id="switcher-default"> Default </button> <button id="switcher-narrow"> Narrow Column </button> <button id="switcher-large"> Large Print </button> </div> </div> 会返回事件的开始时间,并且在我的情况下会以下列格式返回: AppointmentItem.Start
我怎样才能将其格式化为:
"29.05.2018 08:00:00" 我可以用&#34; - &#34;替换点。但也许有更好的方法来做到这一点。 我需要把这一年推到开头。

相同的格式返回AppointmentItem.End我也想格式化它

1 个答案:

答案 0 :(得分:0)

Dim sTime As String
Dim eTime Ss String
sTime = AppointmentItem.Start
eTime = AppointmentItem.End
sTime = Format(sTime, "yyyy-mm-dd hh:mm:ss")
eTime = Format(eTime, "yyyy-mm-dd hh:mm:ss")

MsgBox "Start: " & sTime & " End: " & eTime