Updated Components Check to check for Remote Desktop Connection 6.1.

This commit is contained in:
Riley McArdle
2010-02-02 20:57:10 -06:00
parent e3ae10518d
commit 7c41abb1b4
2 changed files with 4 additions and 4 deletions

View File

@@ -368,8 +368,8 @@
Public Const CcCheckFailed As String = "Check failed!"
Public Const CcRDPOK As String = "All RDP components were found and seem to be registered properly." & vbNewLine & _
"Remote Desktop Connection Control Version {0}"
Public Const CcRDPFailed As String = "For RDP to work properly you need to have at least Remote Desktop Connection (Terminal Services Client) 6.0 installed. You can get it here: http://support.microsoft.com/kb/925876" & vbNewLine & _
"If you have RDP 6.0 installed and the check still fails, try to register mstscax.dll manually. To do this open up the run dialog (Start - Run) and enter the following: regsvr32 ""c:\windows\system32\mstscax.dll"" (Where c:\ is your system drive)." & vbNewLine & _
Public Const CcRDPFailed As String = "For RDP to work properly you need to have at least Remote Desktop Connection (Terminal Services Client) 6.1 installed. You can get it here: http://support.microsoft.com/kb/951616" & vbNewLine & _
"If you have RDP 6.1 installed and the check still fails, try to register mstscax.dll manually. To do this open up the run dialog (Start - Run) and enter the following: regsvr32 ""c:\windows\system32\mstscax.dll"" (Where c:\ is your system drive)." & vbNewLine & _
"If you still have trouble getting RDP to work please consult the mRemoteNG Forum at http://forum.mremoteng.org/"
Public Const CcVNCOK As String = "All VNC components were found and seem to be registered properly." & vbNewLine & _
"VncSharpNG Control Version {0}"

View File

@@ -489,10 +489,10 @@ Namespace UI
pnlCheck6.Visible = True
Dim RDP As AxMSTSCLib.AxMsRdpClient5 = Nothing
Dim RDP As AxMSTSCLib.AxMsRdpClient6NotSafeForScripting = Nothing
Try
RDP = New AxMSTSCLib.AxMsRdpClient5
RDP = New AxMSTSCLib.AxMsRdpClient6NotSafeForScripting
RDP.CreateControl()
Do Until RDP.Created