Thomas
Thomas

Reputation: 34188

Regarding desktop share concept

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 things 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.

Upvotes: 0

Views: 236

Answers (1)

Henk Holterman
Henk Holterman

Reputation: 273244

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.

Upvotes: 1

Related Questions