VNC server and multi-client in vb.net

I want to create an application that acts like a vnc client that connects to multiple servers at the same time. First of all, how do I access the VNC protocol in vb.net (do client / server, display, etc.)? Second, how can one client connect to multiple servers?

Thanks for the help! I assume there are no VncServer or VncClient components in the .NET framework?

+2


source to share


2 answers


The .net vnc client library can be downloaded here . The documentation for creating C # and vb.net apps has instructions.



+3


source


I don't know of any component in the .NET Framework that can do this for you. My suggestions:

  • Implement one of the VNC protocols yourself in .net
  • Encapsulate a vnc client application.


Every time you start the client it connects to the server, so to connect to 2 servers, start 2 clients.

0


source







All Articles