How can I emulate a mouse click?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have the following problem.
I want to make a program that causes a MOUSE CLICK every 2 sec at a flash project that is open with Microsoft Internet Explorer.
I have heard something about using the SendMessage method but I can't get it to work. I use VB .NET.
Any help would pe appriciate
THANKS!
 
* =?Utf-8?B?S29zdGlz?= said:
I have the following problem.
I want to make a program that causes a MOUSE CLICK every 2 sec at a flash project that is open with Microsoft Internet Explorer.
I have heard something about using the SendMessage method but I can't get it to work. I use VB .NET.

P/invoke on 'mouse_event', VB6 sample ("to be converted") can be found
here:

<http://www.mvps.org/vb/code/MouseEvent.zip>
 
OnMouseDown(New MouseEventArgs(MouseButtons.Left, 1, 10, 10, 0))


Kostis said:
I have the following problem.
I want to make a program that causes a MOUSE CLICK every 2 sec at a flash
project that is open with Microsoft Internet Explorer.
 
Back
Top