Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: https://forum.uvnc.com/viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864

Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- 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

Fails to load library 1SCDLL.dll

Post Reply
linoter
8
8
Posts: 27
Joined: 2007-01-02 11:17
Location: Switzerland

Fails to load library 1SCDLL.dll

Post by linoter »

Hey Rudi

I have a problem with a serie of Maxdata computers:
If I start the PHW server it can't load the library 1SCDLL.dll. In the source code of the gui it's at the line hDLL = LoadLibrary...

Code: Select all

bool
ImportDLL_functions()
{
	hDLL = LoadLibrary ("1SCDLL.dll"); <-----------
	if (!hDLL) return 0;
....
I don't know where's the problem because the same server package works fine on other computers. What do you do at loading time of 1SCDLL.dll? Could it be a graphiccard problem? The affected pcs have all the ATI RADEON XPRESS 200 Series card inside.
Or is there something else that could cause the loading failure?

Thanks for your answer.

Greetz
Stephan
OfficialGuest
Guest Account
Posts: 53
Joined: 2004-08-22 09:38

Re: Fails to load library 1SCDLL.dll

Post by OfficialGuest »

I executed my compiled PCHelpware.exe on a nearly fresh installed Maxdata PC and nothing happened after seeing the progress bar while the files being extracted - the program showing the screen with the connect button never appeared on the screen. This was the first time I saw PCHelpware didnt't even run on a PC. Maybe this is the same problem as you have...
linoter
8
8
Posts: 27
Joined: 2007-01-02 11:17
Location: Switzerland

Re: Fails to load library 1SCDLL.dll

Post by linoter »

Oops, I forgot to tell you that Win XP with all new updates (incl. Internet Explorer 7.0) is installed on these computers.
By the way, the ultravnc one click server is still working on these pcs...
Laery
Posts: 1
Joined: 2007-02-20 14:17

Re: Fails to load library 1SCDLL.dll

Post by Laery »

Hi,

I had the same problem.
Do you have the "SCHook.dll" in the same dir all the "1SCDLL.dl"?
if not, placing it there. That solved my problem.

Regards
Agent Smit
Posts: 1
Joined: 2007-02-24 20:30

Re: Fails to load library 1SCDLL.dll

Post by Agent Smit »

Hey guys,

I seem to be having the same trouble.

I have my executable and 1CHATDLL.dll, 1SCDLL.dll and SCHook.dll in the same folder.

The LoadLibrary call returns NULL/Failed and the GetLastError also returns NULL.

I tried using LoadLibraryEx with the DONT_RESOLVE_DLL_REFERENCES flag which loaded the library but I keep getting the following error...

Test.exe has generated errors and will be closed by Windows.
You will need to restart the program.

An error log is being created.


So has anyone been able to get this to work?
ctrlaltca
8
8
Posts: 10
Joined: 2007-02-20 17:08

Re: Fails to load library 1SCDLL.dll

Post by ctrlaltca »

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..
PMFox
Posts: 1
Joined: 2007-05-29 11:46

Re: Fails to load library 1SCDLL.dll

Post by PMFox »

Hi!
Maybe that PROBLEM: "msvcp60.dll" (C++ runtimes) not found!
I use: "msvcp60.dll" 401 462 byte, 2004.08.04 14:00. I Include to autopackage "1SCDLL.dll", "PcHelpWare.exe" directory

To show error information You link function dynamicaly:

in Delphi:

procedure StartServer(
aID : PChar;
aRepeater : PChar;
aHostName : PChar;
aPort : integer;
aPassword : PChar;
aProxy : boolean;
aClassname : PChar;
aShouldWait : boolean); cdecl;
external '1SCDLL.dll' name 'Start_server';

**************************************************
Main fully connector with source code "PmHelpWare":
http://pmfox.webpark.pl/Programs/PmHelpWare.zip
**************************************************

PMFox
8)
Post Reply