📜  迄今为止的 vba 字符串 - VBA 代码示例

📅  最后修改于: 2022-03-11 14:51:56.539000             🧑  作者: Mango

代码示例2
Dim iDate As String = "05/05/2005"
Dim oDate As DateTime = Convert.ToDateTime(iDate)
MsgBox(oDate.Day & " " & oDate.Month & "  " & oDate.Year)