--- In [email protected], "theyaleon" <[EMAIL PROTECTED]> wrote: > > Can you translate into PPro language this au3-string: > DllCall("user32.dll", "ptr", "SendMessage", "hwnd", $hWnd, > "int", $WM_INPUTLANGCHANGEREQUEST, "int", 1, "int", > $ret[0])
(a) Send message facilities are built into win plugin; see win.sendmessage; (b) docs for WM_INPUTLANGCHANGEREQUEST say "This message is posted, not sent". So you probably should be using win.postmessage. > I've tried to read dll-plugin's help but it's too complicated > (I guess I should know C language to get what does it say > about) Yes, you should NOT be using dll plugin unless you fully understand basic C.
