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

Search found 10 matches

by ctrlaltca
2007-03-07 09:35
Forum: PcHelpWare
Topic: repeater linux autostart
Replies: 6
Views: 10790

Re: repeater linux autostart

Suse: it's not as difficult, just create a bash script like this:


#!/bin/sh
#
# /etc/init.d/x10repeater
#
# Initializes the ultravnc linux repeater
#
### BEGIN INIT INFO
# Provides: ultravncrepeater
# Required-Start:
# Required-Stop:
# Default-Start:
# Default-Stop:
# Description ...
by ctrlaltca
2007-03-04 13:58
Forum: PcHelpWare
Topic: DLL starts with errmsg
Replies: 2
Views: 4490

Re: DLL starts with errmsg

I can't understand what datatypes delphi is passing to the dll. I guess that your error is caused from a wrong interpretation of the first boolean value.
by ctrlaltca
2007-03-04 13:47
Forum: PcHelpWare
Topic: repeater linux autostart
Replies: 6
Views: 10790

Re: repeater linux autostart

Refer to CentOs documentation on how to do it. The repeater is a simple executable, you have to create some boot script for it (tipically in /etc/rc.d).
by ctrlaltca
2007-02-25 14:54
Forum: PcHelpWare
Topic: Fails to load library 1SCDLL.dll
Replies: 6
Views: 10363

Re: Fails to load library 1SCDLL.dll

I wrote a small c app that does the same job, and it's working.. I can't understand what you are doing wrong.. if you want to post some code..
by ctrlaltca
2007-02-24 14:47
Forum: PcHelpWare
Topic: 1scdll implementation
Replies: 16
Views: 21450

Re: 1scdll implementation

Sorry, i clarify my previous sentence:
Windows phw repeater (included in phw package) works;
i did non test uvnc windows repeater;
linux uvnc repeater works too; it seems that the way phw handle IDs is the same as uvnc. Once the repeater create the logical link between server and viewer, it simply ...
by ctrlaltca
2007-02-23 13:22
Forum: PcHelpWare
Topic: 1scdll implementation
Replies: 16
Views: 21450

Re: 1scdll implementation

I didn't test the phw server on Vista, but i remember that last time i tried UVncSc was working (well.. you can't see 3d surfaces). The main problem in Vista is when UAC freezes the screen to ask the administrator password..

I tested phw dlls using both the windows repeater and a linux repeater ...
by ctrlaltca
2007-02-22 16:40
Forum: PcHelpWare
Topic: 1scdll implementation
Replies: 16
Views: 21450

Re: 1scdll implementation

Rudi said he'll answer when he'll be back (this weekend). Thank you Rudi!

Btw: finally i re-wrote a part of my project using vc++6;
Once i understood how the dll<->project communication works, implementing it has been a quite simple task.
Now both server and viewer dlls are working quite well. The ...
by ctrlaltca
2007-02-21 12:31
Forum: PcHelpWare
Topic: 1scdll implementation
Replies: 16
Views: 21450

Re: 1scdll implementation

I'm unable to hide the tray icon or to change it. That's quite boring because you can manually stop the server by right clicking the tray icon, which I don't want (I prefer that my application totally control the server).

It's easy to make it disappear: you have to know its hWND, declare a ...
by ctrlaltca
2007-02-21 12:10
Forum: PcHelpWare
Topic: 1scdll implementation
Replies: 16
Views: 21450

Re: 1scdll implementation

I made more tests to, ripping some code out of the GUI source;
Maybe the answer to your problem in Stop_server is in this comment:
bool waiting_for_quit=false; //Stop_server need to wait until thread end (WM_APP+1)

I end up with a correct version of the "small example" to implement it using C; It ...
by ctrlaltca
2007-02-20 17:39
Forum: PcHelpWare
Topic: 1scdll implementation
Replies: 16
Views: 21450

Re: 1scdll implementation

I tried to implement this in vb6, but i've some problem in passing the "int port" argument to the function Start_server.
First of all, the code: create a new project and add a module to it; add the following function declarations:


Public Declare Function Start_server Lib "1SCDLL.dll" _
(ID As ...