CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    May 2005
    Location
    Oregon
    Posts
    3,725

    Terminal Server client Problem

    solved
    Last edited by humptydumpty; April 23rd, 2010 at 12:00 AM.

  2. #2
    Join Date
    Apr 2009
    Posts
    598

    Re: Terminal Server client Problem

    PChannel[0] = CHANNEL_OPTION_ENCRYPT_RDP;
    Instead, have:
    Code:
    PChannel[0].options = CHANNEL_OPTION_ENCRYPT_RDP;
    See http://msdn.microsoft.com/en-us/libr...85(VS.85).aspx

  3. #3
    Join Date
    May 2005
    Location
    Oregon
    Posts
    3,725

    Re: Terminal Server client Problem

    Quote Originally Posted by olivthill2 View Post
    Instead, have:
    Code:
    PChannel[0].options = CHANNEL_OPTION_ENCRYPT_RDP;
    See http://msdn.microsoft.com/en-us/libr...85(VS.85).aspx
    That is not a problem .It's abs fine .

    Thanks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured