Virtual Mice in C#

Posted by jameshong on Stack Overflow See other posts from Stack Overflow or by jameshong
Published on 2010-05-04T03:59:13Z Indexed on 2010/05/04 4:08 UTC
Read the original article Hit count: 391

Filed under:
|
|

Hi guys,

Is there anything that we could do for implementing VIRTUAL MICE? I mean, I want to have multiple mice within the whole OS, but they must be all VIRTUAL (I'm not talking about the applications that serve multiple mice driver for PS/2 or USB mice or Microsoft's MultiPoint Mouse SDK.)

It is like creating two objects:

Mouse mouse1, mouse2;

and using them like:

mouse1.mouse_event(...); mouse2.mouse_event(...);

having a CURSOR on the screen is NOT IMPORTANT. I only need the action (MOUSE DOWN, MOVE, UP for each but separated)

and the important thing is that these VIRTUAL MICE should work together, at the same time, click or down-move action with different coordinates(x,y).

© Stack Overflow or respective owner

Related posts about virtual

Related posts about mouse