VNC服务器和vb.net 中的多客户端
我想创建一个充当 vnc 客户端的应用程序,它可以同时连接到多个服务器。首先也是最重要的,我如何访问 vb.net 中的 VNC 协议(创建客户端/服务器、输出显示等)?其次,单个客户端如何连接多个服务器?
感谢您的帮助!我认为.net框架中没有VncServer或VncClient组件?
I want to create an application that acts as a vnc client which is connected to multiple servers at once. First and foremost, how do I access the VNC protocol in vb.net (make a client/server, output the display etc)? Second, how can a single client connect to multiple servers?
Thanks for the help! I take it there are no VncServer or VncClient components in the .net framework?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
.net vnc 客户端库可以在此处下载。文档中有有关创建 C# 和 vb.net 应用程序的说明。
A .net vnc client library can be downloaded here. There are instructions in the documentation for creating c# and vb.net applications.
我不知道 .net 框架中的任何组件可以为您执行此操作。我的建议:
每次启动客户端时,它都会连接到服务器,因此为了连接到 2 个服务器,需要启动 2 个客户端。
I don't know any component in the .net framework which can do this for you. My suggestions:
Each time you start a client, it connects to a server, so in order to connect to 2 servers, start 2 clients.