473,395 Members | 1,571 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

mouse_event help needed

I have an application for which I'd like to simulate mouse clicks.
What I want to do is simulate a click at a specific location in the
application. I've tried PostMessage to no avail. I had a bit more
success with mouse_event, however even this doesn't seem to actually
send a click in this application. The code is roughly as
follows (targetHwnd is the hWnd of the target window I'd like to click
in, and targetX/targetY are the x/y coordinates on the screen I want to
click at):

<code>
ForceForegroundWindow(targetHwnd);
int x = targetX * 65536 / Screen.PrimaryScreen.Bounds.Width;
int y = targetY* 65536 / Screen.PrimaryScreen.Bounds.Height;
mouse_event(MOUSEEVENTF_MOUSEMOVE | MOUSEEVENTF_ABSOLUTE, x, y, 0, 0);
Sleep(10);
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
Sleep(10);
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
</code>

This code works fine simulating a mouse click in every other
application I've tried. However, the one I'm interested in does not
respond - the window is brought to the foreground and gains input
focus, the mouse moves to the desire location at which point the
application changes the cursor's icon, and nothing happens. This code
works in creating a mouse click for any other application I've tried.

One thing to note about this application in which I'm trying to
simulate the click is that it does not have any child windows. There
are no buttons or forms whose hWnds I can grab. It appears to render
all buttons, scrollbars and such itself, without using Windows. I have
no clue why it doesn't seem to receive clicks - is there anything
anyone can think of that would explain this behavior? Hopefully I'm
just missing something about emulating mouse clicks in Windows.

Feb 5 '06 #1
4 7481
It sounds like you may have to do some system hook programming.
Curtis
http://www.ghostclip.com
The Premier Help System For Developers

Feb 6 '06 #2
"bowchow79" <bo*******@hotmail.com> wrote in message
news:11*********************@f14g2000cwb.googlegro ups.com...
This code works fine simulating a mouse click in every
other application I've tried. However, the one I'm
interested in does not respond - the window is brought
to the foreground and gains input focus, the mouse moves
to the desire location at which point the application changes
the cursor's icon, and nothing happens.
It may be hiding itself from this sort of stuff in all sorts of complicated
ways, or it may be doing something as simple as checking the time delay
between the "received focus" and the "click", or perhaps also between the
mousedown and the mouseup events in an attempt to discover whether the click
is likely to have been produced by a human operator. The delay between
mousedown and mouseup is typically in the region of 100 milliseconds or more
for a human operator, and perhaps a second or more between focus and
mousedown. Try introducing these delays in your code and see what happens.

Mike


This code works in creating a mouse click for any other application I've tried.

One thing to note about this application in which I'm trying to
simulate the click is that it does not have any child windows. There
are no buttons or forms whose hWnds I can grab. It appears to render
all buttons, scrollbars and such itself, without using Windows. I have
no clue why it doesn't seem to receive clicks - is there anything
anyone can think of that would explain this behavior? Hopefully I'm
just missing something about emulating mouse clicks in Windows.


Feb 6 '06 #3
"Mike Williams" <Mi**@WhiskyAndCoke.com> wrote in message
news:eJ**************@TK2MSFTNGP14.phx.gbl...

.. . . and you might also need to introduce a delay of a hundred milliseconds
or so between the mouse arriving at the desired position and the mousedown.

Mike


Feb 6 '06 #4
On 5 Feb 2006 14:43:59 -0800, "bowchow79" <bo*******@hotmail.com>
wrote:
I have an application for which I'd like to simulate mouse clicks.
What I want to do is simulate a click at a specific location in the
application. I've tried PostMessage to no avail. I had a bit more
success with mouse_event, however even this doesn't seem to actually
send a click in this application. The code is roughly as
follows (targetHwnd is the hWnd of the target window I'd like to click
in, and targetX/targetY are the x/y coordinates on the screen I want to
click at):


Are you absolutely sure that you have the right HWND ?

I would check that using WindowFromPoint

You could also try using Mouse_Event

SetCapture problems also spring to mind
Feb 6 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: System | last post by:
Hello All, Redhat 9.0 Mysql 3.23.56 ==> Running I want to upgarde to 4.0.13 but this is the error it says: # rpm -Uvh MySQL-server-4.0.13-0.i386.rpm warning: MySQL-server-4.0.13-0.i386.rpm: V3...
8
by: Stephen | last post by:
I am trying to add some code to below to include a datatable and fill the datatable. The reason for doing this is so as I can check to see whether there are any rows returned by the stored...
5
by: Steve | last post by:
Hi, I am sitting down to design our next set of internal apps. I would like to approach this in a way that would allow me to break logical parts of the application that handle specific tasks...
0
by: ultradiv | last post by:
I have a VB.NET application partly built that produces an xml output (just a file at present) I have a .NET webserver and SQLserver 2000 I need to be able to send the xml to the webserver/database...
13
by: Abhishek | last post by:
Hi, how do I pass the handle of a control to the win32 api mouse_event. so that it will create the click event on that application only even if there is any other window in front of it. I dont...
28
by: Ian Davies | last post by:
Hello I would appreciate some help from someone who has knowledge of working with css, php javascript and how they interact. Ive been working on a task for the last few days and have started to...
2
by: Atila Olah | last post by:
Hello everyone. I would like to be able to emit a mouse click on my xgl/compiz desktop, like I used to do in Windows: win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN, x, y, 0)...
1
by: dtzWill | last post by:
Hey all--I'm trying to implement the server-side code for some software I'm writing for the iPhone. Basically it's a wireless touchpad... so I have a client that sends events (runs on the phone)...
37
by: C_guy | last post by:
Does anyone know of a (hopefully free) tool that can traverse a project and determine which "#include"s are not needed or needed in every .C file? This would be helpful in removing header...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.