在VB中,可以使用Now函數(shù)來(lái)獲取當(dāng)前日期和時(shí)間,然后通過(guò)MsgBox函數(shù)來(lái)顯示。
以下是一個(gè)示例代碼:
Dim currentDate As Date
currentDate = Now
MsgBox "當(dāng)前日期和時(shí)間為:" & currentDate
在上述代碼中,首先聲明一個(gè)Date類型的變量currentDate,然后使用Now函數(shù)將當(dāng)前日期和時(shí)間賦值給這個(gè)變量。最后,通過(guò)MsgBox函數(shù)來(lái)顯示當(dāng)前日期和時(shí)間。