|
#1
|
||||
|
||||
|
Inno Setup Advanced Splash Library
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); |
| The Following 16 Users Say Thank You to Razor12911 For This Useful Post: | ||
-XCX- (05-03-2017), Archangel_7 (13-06-2015), arkantos7 (19-05-2015), EzzEldin16 (26-09-2017), gozarck (19-05-2015), JRD! (18-11-2015), JustFun (19-05-2015), kassane (19-05-2015), lolaya (19-05-2015), mausschieber (19-05-2015), mertderler (25-05-2015), MMR (02-06-2015), omdj (19-05-2015), Simorq (19-05-2015), Stor31 (21-05-2015), y_thelastknight (19-05-2015) | ||
| Sponsored Links |
|
#2
|
||||
|
||||
|
nice, but only problem is it take little time to load. otherwise its awesome.
__________________
Glass BB | BlackBox v2 | Portable Installer |
|
#3
|
|||
|
|||
|
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. |
|
#4
|
||||
|
||||
|
@y_thelastknight
what do you mean? Little time and thats a problem. @Ekias i hate microsoft right now... |
|
#5
|
||||
|
||||
|
windows 10 is beta version and so it have a bug
__________________
The Imitation Game |
| The Following User Says Thank You to lhanz678 For This Useful Post: | ||
Razor12911 (20-05-2015) | ||
|
#6
|
|||
|
|||
|
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). 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? |
|
#7
|
||||
|
||||
|
Quote:
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;
|
![]() |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| BlackBox v2 | y_thelastknight | Conversion Tutorials | 567 | 11-03-2025 07:16 |
| INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup | REV0 | Conversion Tutorials | 129 | 21-05-2021 05:51 |
| Useful Dll for Inno Setup users | peterf1999 | Conversion Tutorials | 88 | 01-12-2017 16:00 |
| INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 06:57 |
| Inno Setup System Info Library | Razor12911 | Conversion Tutorials | 7 | 23-03-2014 08:15 |