c#rdp客户端,用户名和密码检查不正确?

时间:2017-11-16 00:24:47

标签: c# .net visual-studio rdp

我在CodeProject中看到并下载了一个RDP实例,但此应用程序仅检查连接。在此应用程序中,我想知道是否输入了错误的用户名或错误的密码。我该怎么办?

code project RDP c# code link

try
        {
            rdp.Server = txtServer.Text;
            rdp.UserName = txtUserName.Text;

            IMsTscNonScriptable secured = (IMsTscNonScriptable)rdp.GetOcx();
            secured.ClearTextPassword = txtPassword.Text;
            rdp.Connect();
        }
        catch (Exception Ex)
        {
            MessageBox.Show("Error Connecting", "Error connecting to remote desktop " + txtServer.Text + " Error:  " + Ex.Message,MessageBoxButtons.OK, MessageBoxIcon.Error);
        }

0 个答案:

没有答案