首页 文章

确保您的VBA代码是64位兼容的

提问于
浏览
3

我的Mircosoft Office 2010是x86但是当我尝试运行oe VBA时,我收到一个错误,它不兼容x64 .

我有这个代码:

Private Declare Function SHFileOperation Lib "shell32.dll" Alias _
    "SHFileOperationA" (lpFileOp As SHFILEOPSTRUCT) As Long

Private Declare Function PathIsNetworkPath Lib "shlwapi.dll" _
    Alias "PathIsNetworkPathA" ( _
    ByVal pszPath As String) As Long

Private Declare Function GetSystemDirectory Lib "kernel32" _
    Alias "GetSystemDirectoryA" ( _
    ByVal lpBuffer As String, _
    ByVal nSize As Long) As Long

Private Declare Function SHEmptyRecycleBin _
    Lib "shell32" Alias "SHEmptyRecycleBinA" _
    (ByVal hwnd As Long, _
     ByVal pszRootPath As String, _
     ByVal dwFlags As Long) As Long

Private Const FO_DELETE = &H3
Private Const FOF_ALLOWUNDO = &H40
Private Const FOF_NOCONFIRMATION = &H10
Private Const MAX_PATH As Long = 260

Private Type SHFILEOPSTRUCT
    hwnd As Long
    wFunc As Long
    pFrom As String
    pTo As String
    fFlags As Integer
    fAnyOperationsAborted As Boolean
    hNameMappings As Long
    lpszProgressTitle As String
End Type

''''''''''''''''''''''''''''''''''''''
' Download API function.
''''''''''''''''''''''''''''''''''''''
Private Declare Function URLDownloadToFile Lib "urlmon" Alias _
                        "URLDownloadToFileA" ( _
                            ByVal pCaller As Long, _
                            ByVal szURL As String, _
                            ByVal szFileName As String, _
                            ByVal dwReserved As Long, _
                            ByVal lpfnCB As Long) As Long

我尝试将每个私有声明函数更改为私有声明PtrSafe函数

但是当我尝试加载代码时,我的Excel无法响应 .

anyoe知道解决方案吗?

谢谢

解决方案:只需将Long改为LongPtr

1 回答

  • 6

    Long 是32位整数但在64位版本的Office下调用Windows API句柄和指针将是64位宽,因此上述API将失败 .

    在VBA7中提供 LongPtr 以适应这种情况,Microsoft的Compatibility Guide描述了使您在x86 / x64版本的Office下运行代码所需执行的操作 .

相关问题