Hello.
I am trying to figure out how to connect to RDP using winsock
i have tried the following
Private WithEvents rdp As MSTSCLib.MsRdpClient2
Private Sub Command1_Click()
Set rdp = New MSTSCLib.MsRdpClient2
rdp.Server = ip here
rdp.UserName = <username>
rdp.UserName = <password>
rdp.Connect
End Sub
and basically tried everything i could try but without success
what i want to is connecting to rdp without the windows one. I mean i want create a standalone rdp.
and check whether the pass is correct or not based on data arrival. How i am going to do that
any help would be appreciated.
I am trying to figure out how to connect to RDP using winsock
i have tried the following
Private WithEvents rdp As MSTSCLib.MsRdpClient2
Private Sub Command1_Click()
Set rdp = New MSTSCLib.MsRdpClient2
rdp.Server = ip here
rdp.UserName = <username>
rdp.UserName = <password>
rdp.Connect
End Sub
and basically tried everything i could try but without success
what i want to is connecting to rdp without the windows one. I mean i want create a standalone rdp.
and check whether the pass is correct or not based on data arrival. How i am going to do that
any help would be appreciated.