Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

UseDll on win98


1 reply to this topic

Thorborg

Thorborg
  • Members
  • 1 posts

Posted 30 September 2002 - 10:42

Hi all,

I have a problem using the UseDll function in IS 6.1.
It works perfectly on XP and 2000, but NOT on Win98...?

UseDll returns with -1!

Can anyone help me??

Util.dll is placed in:
..\Setup Files\Uncompressed Files\Language Independent\OS Independent


My script:
  ..  
  ...
  szDLLName = SRCDIR ^ "util.dll";
  nReturn = UseDLL(szDLLName);

  if (nReturn < 0) then
     MessageBox("util.dll is missing.", SEVERE);
     UnUseDLL(szDLLName);
     abort;
  endif;
  ...
  ..

BR

Thorborg

MarkoK

MarkoK
  • Full Members
  • 48 posts

Posted 30 September 2002 - 12:18

You should check wether all dll dependencies are fulfilled on a win98 system. Use Depends.exe for that.
Depends can be found on www.dependencywalker.com

Regards,
Marko