View Full Version : Inno Setup Advanced Splash Library
Razor12911
19-05-2015, 03:53
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
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
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
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?
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:
procedure ForceRemove(const ModuleName: string);
var
hMod: HMODULE;
begin
hMod := GetModuleHandle(PChar(ModuleName));
if hMod=0 then
exit;
repeat
until not FreeLibrary(hMod);
end;
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.