Hello to the guru's.
I develop a techer-student application that need alll the student view the teacher screen at the same time, if this possible?
Can somebody send me some code or information?
My email is forkus2000@yahoo.com
Regards to all
After more 1 000 000 (one million) views on forum for 1.5.0.x development versions... and 1.6.0.0 version
A new stable version, UltraVNC 1.6.1.0 and UltraVNC SC 1.6.1.0 have been released: https://forum.uvnc.com/viewtopic.php?t=38080
Feedback is welcome
Celebrating the 22th anniversary of the UltraVNC (25th anniversary since the laying of the foundation stone): https://forum.uvnc.com/viewtopic.php?t=38031
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Forum password change request: https://forum.uvnc.com/viewtopic.php?t=38078
Development: UltraVNC development is always here... Any help is welcome.
A new development version, UltraVNC 1.6.2.0-dev has been released, please test it: https://forum.uvnc.com/viewtopic.php?t=38083
Feedback is welcome
Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc
A new stable version, UltraVNC 1.6.1.0 and UltraVNC SC 1.6.1.0 have been released: https://forum.uvnc.com/viewtopic.php?t=38080
Feedback is welcome
Celebrating the 22th anniversary of the UltraVNC (25th anniversary since the laying of the foundation stone): https://forum.uvnc.com/viewtopic.php?t=38031
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Forum password change request: https://forum.uvnc.com/viewtopic.php?t=38078
Development: UltraVNC development is always here... Any help is welcome.
A new development version, UltraVNC 1.6.2.0-dev has been released, please test it: https://forum.uvnc.com/viewtopic.php?t=38083
Feedback is welcome
Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc
multicast in visual basic?
I googled for multicast vnc and up came among others
http://www2.in.tum.de/~ziewer/multicastvnc/
I don't know how or if they handle lost packets.
http://www2.in.tum.de/~ziewer/multicastvnc/
I don't know how or if they handle lost packets.
- Rudi De Vos
- Admin & Developer
- Posts: 6950
- Joined: 2004-04-23 10:21
- Contact:
The biggest isue with multicast
+Speed controle. With TCP, it's the cpu and bandwidth that controle the speed. Viewer ask next update.
Using multicast, you move from viewer ask to server push.
If you restrict the use to LAN, classroom model you can easy overcome
this problem by using one TCP viewer for rate controle and X mulicast connections.
+All package need to be total independed.
order is unimportant
missed packages have no influnce.
+package loss:
Handle package lost may be overkill. The lost package will in most cases
already be to old and overwritten be a next package.
You better add something that send a little part of the screen (64x64) with
each update, so after 2 or 3 minutes you have send the complete screen
This also has the advantage, that a new multicast connection will not require a full screen refresh.
+Speed controle. With TCP, it's the cpu and bandwidth that controle the speed. Viewer ask next update.
Using multicast, you move from viewer ask to server push.
If you restrict the use to LAN, classroom model you can easy overcome
this problem by using one TCP viewer for rate controle and X mulicast connections.
+All package need to be total independed.
order is unimportant
missed packages have no influnce.
+package loss:
Handle package lost may be overkill. The lost package will in most cases
already be to old and overwritten be a next package.
You better add something that send a little part of the screen (64x64) with
each update, so after 2 or 3 minutes you have send the complete screen
This also has the advantage, that a new multicast connection will not require a full screen refresh.