C# Creating Remote Desktop Application
Hi, all. I want to create a Remote Deskto Application.. I add Microsoft RDP Client Control from COM Compenents.
I Wrote these Codes in my Form.Load Event
rdpc.Server = "111.111.111.111";
rdpc.UserName = "User1";
rdpc.AdvancedSettings5.ClearTextPassword = "1234";
rdpc.AdvancedSettings5.RedirectDrives = true;
rdpc.AdvancedSettings5.RedirectPorts = false;
rdpc.AdvancedSettings5.RedirectPrinters = true;
rdpc.AdvancedSettings5.RedirectSmartCards = false;
rdpc.DesktopHeight = 950;
rdpc.DesktopWidth = 1580;
rdpc.Connect();
But There is nothing when The form Loads ..
Is There anyone to help me ??