remote desktop window?

CPaul

New member
Joined
May 18, 2011
Messages
2
Programming Experience
1-3
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.

tks.
 
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
 
Back
Top