Jump to content

Dllcall and AutoItX3.dll


Recommended Posts

Hello

I'm trying to use dllcall for autoitx3.dll, but i'm got some error. Here is my code:

$dll = DllOpen("AutoItX3.dll")
;MsgBox(0, '', @error)
$result = DllCall($dll, "int", "AU3_ToolTip", "str", "Hello, world!" , "long", @DesktopWidth / 3, "long", @DesktopHeight / 3)
DllClose($dll)

Please help, thanks.

 

Link to comment
Share on other sites

Hi. use unicode.

$dll = DllOpen("AutoItX3.dll")
;MsgBox(0, '', @error)
$result = DllCall($dll, "int", "AU3_ToolTip", "wstr", "Hello, world!" , "long", @DesktopWidth / 3, "long", @DesktopHeight / 3)
DllClose($dll)

saludos

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...