heinduplessis Posted July 2, 2012 Posted July 2, 2012 I've done some searching through the forum but can't find exactly what I need - I might have it on it but I'm very new to AutoIt so I get confused easily I just need to send a WM_COMMAND to a window handle and gui element ID. The "traditional" winapi code is: PostMessage(h,WM_COMMAND, BN_CLICKED, id) where h is the top level window handle and id is the id of the button I need clicked. I'm sure it's just a few lines of code but for the life of me I can't hack it. Many thanks.
Skitty Posted July 2, 2012 Posted July 2, 2012 (edited) Use the sendmessage functionDllCall("user32.dll", "lresult", "SendMessage", "hwnd", $WindowHandle, "uint", $Windows_Message, "wparam", $wparam, "lparam", $lparam);0xFFFF = all windows Edited July 2, 2012 by ApudAngelorum
heinduplessis Posted July 2, 2012 Author Posted July 2, 2012 (edited) Use the sendmessage function DllCall("user32.dll", "lresult", "SendMessage", "hwnd", $WindowHandle, "uint", $Windows_Message, "wparam", $wparam, "lparam", $lparam);0xFFFF = all windows Thank you very much for your reply. So, if I understand correctly, to replicate my sample above, I can send: DllCall("user32.dll", "lresult", "SendMessage", "hwnd", 131816, "uint",273, "wparam", 0, "lparam", 4427); 131816 = Window Handle 273 = WM_COMMAND 0 = BN_CLICKED 4427 = ID of button I've tried it but don't get the expected result, the button seems not to have clicked. Is there something wrong with my implementation? Edited July 2, 2012 by heinduplessis
Skitty Posted July 2, 2012 Posted July 2, 2012 I just noticed that your attempting to use this to simulate clicking on a button. Why not just use the controlclick command?
BrewManNH Posted July 2, 2012 Posted July 2, 2012 Never hard code the window handle value into your script, it will change every time you run it. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
Zedna Posted July 2, 2012 Posted July 2, 2012 (edited) You can use _SendMessage() from standard include file Misc.au3Here is similar use with WM_SYSCOMMAND Edited July 2, 2012 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search
Zedna Posted July 2, 2012 Posted July 2, 2012 Never hard code the window handle value into your script, it will change every time you run it.True. Instead use WinGetHandle() Resources UDF ResourcesEx UDF AutoIt Forum Search
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now