📜  vba 检查 32 位或 64 位 - VBA 代码示例

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

代码示例1
Sub TestMe()
    #If Win64 Then
        MsgBox "You're using 64-bit MSOffice"
    #Else
        MsgBox "You're using 32-bit MSOffice"
    #End If
End Sub