Cyclone
Cyclone

Reputation: 18285

VNC server & multiclient in vb.net

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

Answers (2)

RobS
RobS

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

Lars D
Lars D

Reputation: 8563

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.

Upvotes: 0

Related Questions