我正在尝试使用“Microsoft RDP 客户端控件版本 9”,但它没有在表单上的控件中显示任何内容,这是我的代码
axRDP.Server = "10.10.10.10"
axRDP.UserName = "Domain\Username"
Dim secured As IMsTscNonScriptable = DirectCast(axRDP.GetOcx(), IMsTscNonScriptable)
secured.ClearTextPassword = "Password1"
axRDP.Connect()
请我想知道我的代码有什么问题以及如何解决它。