我希望在 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
我应该导入一些东西吗?
感谢您的帮助。