How to bring up something like a remote desktop window? Is it like a com service or is there a control which I an include in my form? Feeling like a real newb.
Here's some code to start a Remote Desktop session with the specified IP:
VB.NET:
Private Sub runRD(strIP As String)
Dim proc As New ProcessStartInfo
proc.FileName = "MSTSC.exe"
proc.Arguments = "/v:" & strIP
Process.Start(proc)
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.