Is there a way to send mouse events to another window in Window 7 ?
I used to do this :
[DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]
public static extern void mouse_event(long dwFlags, long dx, long dy, long cButtons, long dwExtraInfo);
But this does not seem to work anymore in Win7.
Any ideas ?
Thanks.