Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials

Reply
 
Thread Tools Display Modes
  #1  
Old 19-05-2015, 04:53
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,746
Thanks: 2,141
Thanked 11,099 Times in 2,295 Posts
Razor12911 is on a distinguished road
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);
Enjoy
Attached Images
File Type: png Splash.PNG (467.5 KB, 453 views)
Attached Files
File Type: 7z Inno Setup Advanced Splash.7z (2.32 MB, 573 views)
Reply With Quote
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 (03-06-2015), omdj (19-05-2015), Simorq (19-05-2015), Stor31 (21-05-2015), y_thelastknight (19-05-2015)
Sponsored Links
  #2  
Old 19-05-2015, 11:44
y_thelastknight's Avatar
y_thelastknight y_thelastknight is offline
Registered User
 
Join Date: Mar 2010
Location: Canada
Posts: 437
Thanks: 616
Thanked 574 Times in 213 Posts
y_thelastknight is on a distinguished road
nice, but only problem is it take little time to load. otherwise its awesome.
__________________
Glass BB | BlackBox v2 | Portable Installer
Reply With Quote
  #3  
Old 20-05-2015, 00:11
ekias642 ekias642 is offline
Registered User
 
Join Date: May 2013
Location: argentina
Posts: 31
Thanks: 0
Thanked 12 Times in 10 Posts
ekias642 is on a distinguished road
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.
Reply With Quote
  #4  
Old 20-05-2015, 15:51
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,746
Thanks: 2,141
Thanked 11,099 Times in 2,295 Posts
Razor12911 is on a distinguished road
@y_thelastknight
what do you mean? Little time and thats a problem.
@Ekias
i hate microsoft right now...
Reply With Quote
  #5  
Old 20-05-2015, 19:10
lhanz678's Avatar
lhanz678 lhanz678 is offline
Registered User
 
Join Date: Apr 2014
Location: Philippines
Posts: 67
Thanks: 150
Thanked 65 Times in 27 Posts
lhanz678 is on a distinguished road
Quote:
Originally Posted by ekias642 View Post
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
__________________
The Imitation Game
Reply With Quote
The Following User Says Thank You to lhanz678 For This Useful Post:
Razor12911 (21-05-2015)
  #6  
Old 12-11-2015, 20:57
r4e r4e is offline
Registered User
 
Join Date: Jul 2012
Location: Germany
Posts: 7
Thanks: 1
Thanked 1 Time in 1 Post
r4e is on a distinguished road
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?
Reply With Quote
  #7  
Old 18-11-2015, 14:33
JRD!'s Avatar
JRD! JRD! is offline
Registered User
 
Join Date: Sep 2015
Location: Matrix
Posts: 274
Thanks: 225
Thanked 600 Times in 168 Posts
JRD! is on a distinguished road
Quote:
Originally Posted by r4e View Post
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?
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;
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
BlackBox v2 y_thelastknight Conversion Tutorials 566 13-10-2023 18:04
INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup REV0 Conversion Tutorials 129 21-05-2021 06:51
Useful Dll for Inno Setup users peterf1999 Conversion Tutorials 88 01-12-2017 17:00
INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup REV0 Conversion Tutorials 51 26-03-2015 07:57
Inno Setup System Info Library Razor12911 Conversion Tutorials 7 23-03-2014 09:15



All times are GMT -7. The time now is 04:47.


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