FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   Inno Setup Advanced Splash Library (https://fileforums.com/showthread.php?t=96910)

Razor12911 19-05-2015 03:53

Inno Setup Advanced Splash Library
 
2 Attachment(s)
Hi again guys, Created this library from the idea of the isgsg.dll but only better because this library has up to 22 effects.

Functions

Code:

procedure Splash(ImageFile: PAnsiChar; Effect, InTime, ShowTime, OutTime: Integer);
Enjoy

y_thelastknight 19-05-2015 10:44

nice, but only problem is it take little time to load. otherwise its awesome.

ekias642 19-05-2015 23:11

This problem happear when execute the exe file.

Acces violation at address 0370665f in module "ISAdvSplash.dll". Writhe of addrress 082f8000.

My system is windows 10 insider 64 bists.

Razor12911 20-05-2015 14:51

@y_thelastknight
what do you mean? Little time and thats a problem.
@Ekias
i hate microsoft right now...

lhanz678 20-05-2015 18:10

Quote:

Originally Posted by ekias642 (Post 440862)
This problem happear when execute the exe file.

Acces violation at address 0370665f in module "ISAdvSplash.dll". Writhe of addrress 082f8000.

My system is windows 10 insider 64 bists.

windows 10 is beta version and so it have a bug

r4e 12-11-2015 19:57

Hey, I really like your splash plugin but I have a problem:

If I use your Exaple script, the compiled example automatically closes after the splash
has shown (it shows no wizard, the installer just ends completely).

If I add "Result := True;", the wizard shows up but in the task bar there is an icon for
the installer and the icon for the external loaded plugin - which also is normal
if i use isgsg.dll but in that case the plugin closes when it has shown the splash
(and only the wizard window and its icon stays).

http://fs5.directupload.net/images/151113/qyqytfh3.png

Is there a way to unload/close the plugin after it has loaded so that only the
one icon shows up in the taskbar which is for the installer itself?

JRD! 18-11-2015 13:33

Quote:

Originally Posted by r4e (Post 444555)
Hey, I really like your splash plugin but I have a problem:

If I use your Exaple script, the compiled example automatically closes after the splash
has shown (it shows no wizard, the installer just ends completely).

If I add "Result := True;", the wizard shows up but in the task bar there is an icon for
the installer and the icon for the external loaded plugin - which also is normal
if i use isgsg.dll but in that case the plugin closes when it has shown the splash
(and only the wizard window and its icon stays).

http://fs5.directupload.net/images/151113/qyqytfh3.png

Is there a way to unload/close the plugin after it has loaded so that only the
one icon shows up in the taskbar which is for the installer itself?

Try Force unload module:

Code:

procedure ForceRemove(const ModuleName: string);
var
  hMod: HMODULE;
begin
  hMod := GetModuleHandle(PChar(ModuleName));
  if hMod=0 then
    exit;
  repeat
  until not FreeLibrary(hMod);
end;



All times are GMT -7. The time now is 10:39.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com