Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 22-02-2013, 07:24
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
Quote:
Originally Posted by Andre Jesus View Post
Hi everybody.

1. I want to avoid my installer run if the same already is running.
Something like the message "Your Setup is Already Running".
How can i make this?

2. Currently i use this option to my border.
Code:
BorderStyle:= bsDialog;
But i want remove only top border like the example picture below.
How can i make this?

Attachment 5675

P.S. Please ignore the buttons, i still can´t make it work correctly.

3. Someone can indicate a post about how can i compress my games with precomp? Something like a tutorial step-by-step.
Unfortunately i still don´t know nothing about this.

Thanks in advance.
Do you want to remove border?
Use the ISDone for Precomp, srep,sevenzip and etc functions.

Last edited by Razor12911; 22-02-2013 at 08:09.
Reply With Quote
Sponsored Links
  #2  
Old 22-02-2013, 09:41
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
Splash Example

Splash Example, Makes your source code make this.\


Credits:
Imageshack.
Attached Files
File Type: 7z Splash Example.7z (159.6 KB, 67 views)
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
Andre Jesus (24-02-2013)
  #3  
Old 22-02-2013, 15:30
Andre Jesus's Avatar
Andre Jesus Andre Jesus is offline
Registered User
 
Join Date: Jun 2012
Location: Brazil
Posts: 70
Thanks: 11
Thanked 0 Times in 0 Posts
Andre Jesus is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
Splash Example, Makes your source code make this.\


Credits:
Imageshack.
Nice!

Reply With Quote
  #4  
Old 04-03-2013, 05:37
Andre Jesus's Avatar
Andre Jesus Andre Jesus is offline
Registered User
 
Join Date: Jun 2012
Location: Brazil
Posts: 70
Thanks: 11
Thanked 0 Times in 0 Posts
Andre Jesus is on a distinguished road
Quote:
Originally Posted by Andre Jesus View Post
Hi everybody.

1. I want to avoid my installer run if the same already is running.
Something like the message "Your Setup is Already Running".
How can i make this?

2. Currently i use this option to my border.
Code:
BorderStyle:= bsDialog;
But i want remove only top border like the example picture below.
How can i make this?

3. How can make png button on Inno Setup? Give me a sample example.
Could someone help me with these three questions abouve?
Thanks in advance.
Reply With Quote
  #5  
Old 08-03-2013, 10:33
altef_4's Avatar
altef_4 altef_4 is offline
Registered User
 
Join Date: Mar 2012
Location: Ukraine
Posts: 361
Thanks: 248
Thanked 1,022 Times in 239 Posts
altef_4 is on a distinguished road
Quote:
Originally Posted by Andre Jesus View Post
Could someone help me with these three questions abouve?
Thanks in advance.
1. Use this
Code:
[setup]
AppMutex=UniqueNAME

[_code]
procedure InitializeWizard;
begin
CreateMutex('UniqueNAME');
end;

Last edited by altef_4; 12-03-2013 at 11:32. Reason: CreateAppMutex->CreateMutex
Reply With Quote
  #6  
Old 10-03-2013, 04:09
Andre Jesus's Avatar
Andre Jesus Andre Jesus is offline
Registered User
 
Join Date: Jun 2012
Location: Brazil
Posts: 70
Thanks: 11
Thanked 0 Times in 0 Posts
Andre Jesus is on a distinguished road
Quote:
Originally Posted by altef_4 View Post
1. Use this
Code:
[setup]
AppMutex=UniqueNAME

[_code]
procedure InitializeWizard;
begin
CreateAppMutex('UniqueNAME');
end;
Thank you for your response, however it return the mesage below:

Unknown identifer 'CreateAppMutex'
Reply With Quote
  #7  
Old 23-02-2013, 04:59
spawniectes's Avatar
spawniectes spawniectes is offline
Senior Member
 
Join Date: Sep 2010
Location: Argentina
Posts: 202
Thanks: 52
Thanked 401 Times in 76 Posts
spawniectes is on a distinguished road
Can anyone tell me where to look to fix this, the font are crooped



It's made with CIU 1.0.0.5
Reply With Quote
  #8  
Old 23-02-2013, 05:11
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
the font itself is translated downwards or the height is way more than width unlike other fonts.
Reply With Quote
  #9  
Old 23-02-2013, 05:18
jackstuff's Avatar
jackstuff jackstuff is offline
Registered User
 
Join Date: Oct 2011
Location: iN mEMORIES
Posts: 109
Thanks: 110
Thanked 26 Times in 17 Posts
jackstuff is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
the font itself is translated downwards or the height is way more than width unlike other fonts.
any solution to fix it, give some examples
Reply With Quote
  #10  
Old 23-02-2013, 05:21
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
Quote:
Originally Posted by jackstuff View Post
any solution to fix it, give some examples
Since Yener90's source code edit.png and the text are fixed. there is not solution unless if you make font size smaller.

Or change the font itself.
Reply With Quote
  #11  
Old 23-02-2013, 05:25
jackstuff's Avatar
jackstuff jackstuff is offline
Registered User
 
Join Date: Oct 2011
Location: iN mEMORIES
Posts: 109
Thanks: 110
Thanked 26 Times in 17 Posts
jackstuff is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
Since Yener90's source code edit.png and the text are fixed. there is not solution unless if you make font size smaller.

Or change the font itself.
in your opinion which font would fixed the problem i will apply that in every installer some good fonts
Reply With Quote
  #12  
Old 02-03-2013, 08:53
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
How to add registries in Inno Setup.

Instructions
1. Search for Regedit.exe
2. Open Regedit.exe
3. Press Ctrl+F type (ApplicationName)
4. Wait and Select the appropriate Registry.
5. Right click on registry key then select export.
6. Save as (Registry).reg
7. Download this attachment
8. Open attachment
9. Run Convertor.exe
10. Load Saved (Registry).reg
11. Save as (Registry).iss
12. Open .iss with Inno Setup
13 Copy [Registry] content
14. Paste on script.
15. Done!!!
Reply With Quote
  #13  
Old 23-02-2013, 05:29
jackstuff's Avatar
jackstuff jackstuff is offline
Registered User
 
Join Date: Oct 2011
Location: iN mEMORIES
Posts: 109
Thanks: 110
Thanked 26 Times in 17 Posts
jackstuff is on a distinguished road
Can u upload plz
Reply With Quote
  #14  
Old 23-02-2013, 05:31
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
Quote:
Originally Posted by jackstuff View Post
Can u upload plz
You have Calibri on your system,
Code:
%SystemRoot%\Fonts\
Just check it out.
Reply With Quote
  #15  
Old 23-02-2013, 06:11
jackstuff's Avatar
jackstuff jackstuff is offline
Registered User
 
Join Date: Oct 2011
Location: iN mEMORIES
Posts: 109
Thanks: 110
Thanked 26 Times in 17 Posts
jackstuff is on a distinguished road
thanks, but i have to change the font size also

Last edited by jackstuff; 23-02-2013 at 06:13.
Reply With Quote
Reply


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
INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup REV0 Conversion Tutorials 129 21-05-2021 05:51
INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup REV0 Conversion Tutorials 51 26-03-2015 06:57
Frequently Asked Questions Joe Forster/STA PC Games - Frequently Asked Questions 0 29-11-2005 09:48



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


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