Mac Excel 2016,宏VBA,GetAsyncKeyState:找不到文件:user32

时间:2017-05-15 21:40:59

标签: excel vba macos user32 excel-vba-mac

我希望在 Mac 中使用 Excel 2016 运行Macro Excel。

我的宏使用GetAsyncKeyState功能。在我的宏文件的第一行,我有这个导入:

#If Win64 Then
    Declare PtrSafe Function GetAsyncKeyState Lib "user32" (ByVal kState As Long) As Integer
#Else
    Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Integer) As Integer
#End If

但是当我跑步时我有这个错误:

File not found: user32

我应该导入一些东西吗?

感谢您的帮助。

0 个答案:

没有答案