Remote Desktop Connection VB.NET LOGIN

XTOOLX 21 Reputation points
2021-03-08T21:30:10.933+00:00

Connect to RDP with vb.net code
IP OR USER OR PASSWORD

0 comments No comments
{count} votes

Accepted answer
  1. Viorel 112.5K Reputation points
    2021-03-09T15:09:15.283+00:00

2 additional answers

Sort by: Most helpful
  1. Albert Kallal 4,651 Reputation points
    2021-03-10T20:19:02.827+00:00

    Perhaps you just shell() out and launch the built in RDP client that way?

    I guess this depends on what you really need here, but perhaps just launching the RDP client would suffice?

    eg:

      Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    
            Shell("mstsc.exe v:\\DEVELOPER1", AppWinStyle.NormalFocus)
    
        End Sub
    

    So it not really clear if you simply willing to launch the RDP client, or if you actually looking to do more from VB then just launch the above.

    Regards,
    Albert D. Kallal (Access MVP 2003-2017)
    Edmonton, Alberta Canada

    0 comments No comments

  2. XTOOLX 21 Reputation points
    2021-03-11T13:21:29.76+00:00
    • List item
      76804-capture.png

    The problem does not open like the picture Windows 7

    0 comments No comments