Idea for Desktop Sharing?
-
Hi all, I want to make desktop sharing software which accesses other computer's desktop from my computer. Does any body have idea about this? how to start? Is their any code/articles present on any site? I think you got the idea i want to do ? So please help me? Language can be .net or vc++:) rahul
-
Hi all, I want to make desktop sharing software which accesses other computer's desktop from my computer. Does any body have idea about this? how to start? Is their any code/articles present on any site? I think you got the idea i want to do ? So please help me? Language can be .net or vc++:) rahul
Yeah, here is your IDEA hope you like it. #1 As it is network application ,so you have to depend on WINSOCK for transferring data. #2 now for Seeing Desktop of other computer you have two ways ->either Transger Desktop image per mili second to other computer to show real time image. one major disadvantge is that network usage is so high that it will choke the network,you can visualize by thinking of three computer is sharing ther desktop woith other computer. ->more efective way is to hook wmpaint message, retrieve dta afrom it and send it to remote application. #3 last but not the least, simulating keypress and mosuse movement to particular window. this can be achive easily using WINDOW MESSAGES like WM_CHAR and Mouse Messages if you have handle of particular window. for that this api will help you retieve the particular window handle WindowFromPoint(stPoint); ChildWindowFromPointEx(); ----------------------------- "I Think It Will Help" ----------------------------- Alok Gupta visit me at http://www.thisisalok.tk
-
Hi all, I want to make desktop sharing software which accesses other computer's desktop from my computer. Does any body have idea about this? how to start? Is their any code/articles present on any site? I think you got the idea i want to do ? So please help me? Language can be .net or vc++:) rahul