i have developed two a small apps by which i can send desktop picture with mouse position to another apps. another apps receiving the picture and shows those picture on picture box.
1) so i want to know that how could i send my all mouse keys and keyboard activity in very structure way to another apps which is sending picture.
2) when another apps will receive my mouse & keyboard activity then they will fire properly.
so please tell me how could i send mouse & keyboard activity very structure way and another thin开发者_如何学Gogs is to know that how could programmatically fire those mouse & keyboard activity on another machine. here i am developing this apps with c#. so please give me the concept as a result i can code it in c#. thanks.
Sending a picture (or any data) over a network is relatively easy.
Intercepting and re-creating Mouse and Keybord actions is entirely different. It will involve a lot of lowlevel hooking into Windows, no ready-to-use libraries.
You will have to be proficient in Interop and Marshaling, and maybe C# (.NET) just isn't the best tool for this job.
精彩评论