Guest User

Guest User

  • Tech Writer
  • 47
  • 89.3k

C# Creating Remote Desktop Application

Jan 20 2011 2:37 PM
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 ??

Answers (4)