Reputation: 18285
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?
Upvotes: 2
Views: 9668
Reputation: 3857
A .net vnc client library can be downloaded here. There are instructions in the documentation for creating c# and vb.net applications.
Upvotes: 3
Reputation: 8563
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.
Upvotes: 0