Autohotkey 如何使用带有自动热键的自定义COM dll

Autohotkey 如何使用带有自动热键的自定义COM dll,autohotkey,Autohotkey,我目前正在编写一个应用程序,我想让AHK访问它 该库是用VB.NET编写的,只包含一个类和一个方法。下面是一个片段 Public Class MYAppConnect ‘This is the method I want to call Public Sub FindIt(ByVal aFN As String) ‘here is where the work is done End sub End Class 这个图书馆已经注册,运作良好。例如,我可以从其他项目或VBA offi

我目前正在编写一个应用程序,我想让AHK访问它

该库是用VB.NET编写的,只包含一个类和一个方法。下面是一个片段

Public Class MYAppConnect

‘This is the method I want to call
Public Sub FindIt(ByVal aFN As String)
    ‘here is where the work is done
End sub

End Class
这个图书馆已经注册,运作良好。例如,我可以从其他项目或VBA office程序(如access或word)使用库。这意味着它正在注册表中正确注册


我对AHK一无所知,因此如何使用AHK的库?

我相信您正在寻找的AutoHotkey中的函数是:

以下是有关DllCall使用的一些教程: