08-14-2018, 03:55 AM (This post was last modified: 08-14-2018, 04:17 AM by win.)
In QM, it is very convenient to run vbs scripts. Like the code below, I hope that developers can add a function, such as Ahkexec, I can use to run ahk scripts, like the code behind. thank you very much
08-14-2018, 05:44 AM (This post was last modified: 08-14-2018, 05:45 AM by win.)
@kevin Thank you very much, the above code is my example, I found a lot of ahk code, I want to run them with QM, I don't want to re-write code with QM I want AHK and QM to work together to do some work more efficiently.
// Wait for script to finish
while (ahkReady_())
Sleep(50);
// Unload DLL file
FreeLibrary(hinstLib);
return 0;
}
can I get the return value of the AHK code in the QM code? How to use dll in function Ahkexec? Is it easier to use dll? Can you provide an example? thank you very much