Question

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?

Was it helpful?

Solution

A .net vnc client library can be downloaded here. There are instructions in the documentation for creating c# and vb.net applications.

OTHER TIPS

I don't know any component in the .net framework which can do this for you. My suggestions:

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

Each time you start a client, it connects to a server, so in order to connect to 2 servers, start 2 clients.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top