Link to home
Start Free TrialLog in
Avatar of xSiGiNx
xSiGiNx

asked on

Winapi: Click/Press emulation button in another application.

I have handle to button in some application, that does not belong to my thread space.

I use this code:

 Windows.SendMessage(HANDLE,WM_LBUTTONDOWN,0,0);
 Windows.SendMessage(HANDLE,WM_LBUTTONUP,0,0);

to emulate click/keypress on this button.

However, I doubt, that it is most nice and elegant solution - is there any better?

PS: Method shouldn't involve AttachThreadInput calls, and should work on 98 and XP as well.

Avatar of xSiGiNx
xSiGiNx

ASKER

Btw code was using Delphi. Actually no difference. What I need is some sane windows message, that I could send to control (button)
Avatar of jkr
Avatar of xSiGiNx

ASKER

It seems close, but.. How do I use this function to send "event", if I have handle (HWND) of control?
Avatar of xSiGiNx

ASKER

Naw.. Not close. It seems, like it is something almost like keybd_event, which doesn't care to which control I am sending message.

And I need to send message to control directly.
ASKER CERTIFIED SOLUTION
Avatar of AlexFM
AlexFM

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of xSiGiNx

ASKER

Looks rather nice.. here it is translated to delphi:

procedure MyClick(Wnd,Child:HWND);
begin
Windows.SendMessage(Wnd,WM_COMMAND,GetDlgCtrlID(Child),Child);
end;

Where Wnd is Parent (Form where component is placed) and Child is Button..

It looks like it is what it should be.. But for same silly reason it doesnot just work.. =(

Perhaps its only work if AttachThreadInput is called beforehand?

Too late for me today, will test tomorrow.
Replace SendMessage with PostMessage. AttachThreadInput doesn't matter, Windows messages are always handled in the destination window thread.
Program may ignore WM_COMMAND message only if it is written by some special way - for example, handles button clicks instead of handling WM_COMMAND message. However, this way works for 99% of programs.
Using Spy++ see what message is sent to the button parent when button is clicked. Try to click button programmatically using this utility:
http://www.codeproject.com/tools/MessageSender.asp

If you can do this using message handler, it is possible to do the same in the program. Posting the WM_COMMAND message is the simplest way, in the rare case it is not working by some reason, use SendInput as jkr writes. Having button HWND you can get it's rectangle (see GetWindowRect), move mouse cursor to some point inside of this rectangle (SetCursorPos) and make click using SendInput.
When you PostMessage to the parent, you are missing a parameter, the high word of wParam. Do this:

int nID = GetDlgCtrlID(hButton);
HWND hParent = GetParent(hButton);

if ( hParent )
    PostMessage(hParent, WM_COMMAND,
            (WPARAM)MAKELONG(nID, NM_CLICK),
            (LPARAM)hButton);
Ok, to translate that wParam to delphi (I guess...don't know that language, you'll get it :):

wParam = (NM_CLICK << 16) | nId;

Where NM_CLICK is actually 0xfffe

If defines are a problem, just:

wParam = 0xfffe0000 | (nId & 0xffff);

Where | and & are bitwise.
Avatar of xSiGiNx

ASKER

Still didn't work.. However, I've pinpointed problem to this point:

CtrlID:=Windows.GetDlgCtrlID(Child);

CtrlID.. Is same as Child. Same number. How could that be? Bug in delphi libs or I just miss something about this function?

MSDN gives me this:

"If the function succeeds, the return value is the identifier of the control.

If the function fails, the return value is zero."

SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Oops, typos. rect should be rectCtl
Avatar of xSiGiNx

ASKER

Thx for all replies. I am still inclined to AlexFM solution.. And it even works (Spy++ does give Control's ID - how the heck it GETS it?)

I am really curios, if it's delphi problem, so i try to rewrite call to API in inline ASM.. However - silly question:

How does calling API works in asm?

I mean if this right:

mov eax,HWND
call GetDlgCtrlId
mov CtrlID,eax

Or this:

push eax
call GetDlgCtrlId
pop eax

After I get answer, I'll finish question rewardin participants (probably raisin value)
Avatar of xSiGiNx

ASKER

I got it working. Thx a lot =) I omitted dialog control id at all (used 0).