请问什么语言能获得IE和office excel的版本(32Bit或者64Bit)?_百度...
发布网友
发布时间:2024-10-05 11:19
我来回答
共2个回答
热心网友
时间:2024-10-09 08:40
版本号 Application.Version
下面的代码取得32位,还是64位
Private Function IsWin64() As Boolean
#If Win64 Then
IsWin64 = True
#End If
End Function
Sub test()
MsgBox "VBA运行在" & Application.Version & " " & IIf(IsWin64, "64", "32") & "位环境中"
End Sub
热心网友
时间:2024-10-09 08:38
没看懂你想干什么