How to create your own Remote Desktop Application in Visual C++ or MFC
-
Hello Experts, I want to know how to create a Remote desktop Application in Visual C++ 6.0 (i.e in MFC),I have good knowledge in MFC,but I need to create my own program. Is there any chance I can create it using C++ Please let me know. Regards Kiran
-
Hello Experts, I want to know how to create a Remote desktop Application in Visual C++ 6.0 (i.e in MFC),I have good knowledge in MFC,but I need to create my own program. Is there any chance I can create it using C++ Please let me know. Regards Kiran
Please explain what you mean by "Remote desktop Application"?
-
Hello Experts, I want to know how to create a Remote desktop Application in Visual C++ 6.0 (i.e in MFC),I have good knowledge in MFC,but I need to create my own program. Is there any chance I can create it using C++ Please let me know. Regards Kiran
Member 9052985 wrote:
Is there any chance
Doesn't seem like there's much.
The difficult we do right away... ...the impossible takes slightly longer.
-
Hello Experts, I want to know how to create a Remote desktop Application in Visual C++ 6.0 (i.e in MFC),I have good knowledge in MFC,but I need to create my own program. Is there any chance I can create it using C++ Please let me know. Regards Kiran
If you have "good knowledge in MFC", then you should already know what you can do in C++. In order to create a remote desktop app, you need to know a few things: 0.Sockets (maybe secure sockets while you're at it). 1.Server-client applications. 2.Screen capture methods. 3.Mouse/keyboard capture methods (and the inverse, how to transmit the captured keys). Can you do it in C++, literally, no... you have to use APIs that are OS dependent... but that's just a technicality, so yes.. you can do it in C++ (with proper use of APIs).
-
Hello Experts, I want to know how to create a Remote desktop Application in Visual C++ 6.0 (i.e in MFC),I have good knowledge in MFC,but I need to create my own program. Is there any chance I can create it using C++ Please let me know. Regards Kiran
Maybe this can help - Remote Control PCs[^] Alternative you can checkout this very simple .NET version Screen Cast Server with Control[^]