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
  #826  
Old 10-12-2013, 15:59
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
Dude i meant the title of the window it self not the content.
Attached Images
File Type: jpg 12-11-2013 2-18-05 AM.jpg (6.2 KB, 209 views)

Last edited by danswano; 10-12-2013 at 16:18.
Reply With Quote
Sponsored Links
  #827  
Old 15-12-2013, 01:35
hackjack hackjack is offline
Registered User
 
Join Date: Nov 2011
Location: INDIA
Posts: 18
Thanks: 5
Thanked 2 Times in 2 Posts
hackjack is on a distinguished road
i compiled using blackbox script by kurutuco but i get error during when the setup file is extracting.i tried darkbox setup too. here is the images of error- http://img11.imageshack.us/img11/6941/lkkv.png
http://img607.imageshack.us/img607/5185/vkxz.png
http://img42.imageshack.us/img42/9836/ve3u.png
Reply With Quote
  #828  
Old 19-12-2013, 11:20
Dubl1n Dubl1n is offline
Registered User
 
Join Date: Dec 2013
Location: US
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Dubl1n is on a distinguished road
Hi All -

I am new to the forums and new to INNO installers. The company I work for has used INNO installers for quite some time, well over 5 years - well before I started working here, and it has fallen to me to fix an issue with our installers. Normally we create downloadable installers from our site, and have not had any issues. We do, about once per year, create DVDs to install our product and this year we have run into an issue, while not broken, is frustrating for our QA dept. and will be for our customers.

So the issue: again, the DVDs work - so the installer is not "broken" per se. This year we have 3 DVDs. Starting the installation from Disk 1, no issues. Get to Disk 2 installs some, but then gets to a point where it needs to go back to Disk 1. And it does this about 6 times, before it then asks for Disk 3 and completes. My guess from looking at the files is that it is getting to a file that needs to reference back to another file that is located on Disk 1 and will only continue once it references that file. Again a guess.

Has anyone seen this issue? And is there a way to make certain files group together in the installer so that they will always be in the same bin files and ultimately on the same Disk so that multiple Disk swaps need to occur?

Thanks for the help.
D
Reply With Quote
  #829  
Old 23-12-2013, 02:30
Joe Forster/STA's Avatar
Joe Forster/STA Joe Forster/STA is offline
Senior forum member
 
Join Date: Nov 2000
Location: Hungary
Posts: 9,836
Thanks: 20
Thanked 342 Times in 224 Posts
Joe Forster/STA is on a distinguished road
Find out in which order the files are being extracted and try to archive them into the installation package in the same order. (That's a tip without actually knowing Inno Setup. )
__________________
Joe Forster/STA
For more information, see the FileForums forum rules and the PC Games forum FAQ!
Don't contact me via E-mail or PM to ask for help with anything other than patches (or software in general) done by me, otherwise your request may be deleted without any reply!
Homepage: http://sta.c64.org, E-mail: [email protected]; for attachments, send compressed (ZIP or RAR) files only, otherwise your E-mail will bounce back!
Reply With Quote
  #830  
Old 24-12-2013, 17:01
GloverK1911's Avatar
GloverK1911 GloverK1911 is offline
Registered User
 
Join Date: Nov 2013
Location: Viet Nam
Posts: 116
Thanks: 22
Thanked 8 Times in 4 Posts
GloverK1911 is on a distinguished road
How to make a setup file can extract the .bin file?
Reply With Quote
  #831  
Old 24-12-2013, 17:12
sentinelks sentinelks is offline
Banned
 
Join Date: May 2013
Location: hjklò
Posts: 281
Thanks: 74
Thanked 320 Times in 157 Posts
sentinelks is on a distinguished road
Quote:
Originally Posted by GloverK1911 View Post
How to make a setup file can extract the .bin file?
Please more details
Reply With Quote
  #832  
Old 25-12-2013, 01:00
chuotchu001 chuotchu001 is offline
Registered User
 
Join Date: Dec 2012
Location: Vietnam
Posts: 159
Thanks: 554
Thanked 175 Times in 52 Posts
chuotchu001 is on a distinguished road
Quote:
Originally Posted by GloverK1911 View Post
How to make a setup file can extract the .bin file?
Go here
Reply With Quote
  #833  
Old 25-12-2013, 05:53
GloverK1911's Avatar
GloverK1911 GloverK1911 is offline
Registered User
 
Join Date: Nov 2013
Location: Viet Nam
Posts: 116
Thanks: 22
Thanked 8 Times in 4 Posts
GloverK1911 is on a distinguished road
Quote:
Originally Posted by sentinelks View Post
Please more details
How to make a setup file like this to extract the .bin file compressed


Reply With Quote
  #834  
Old 25-12-2013, 05:56
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
that's an ordinary installer.

all that it require for you is to set up the product files, set bmp images, then done.
Reply With Quote
  #835  
Old 25-12-2013, 06:07
sentinelks sentinelks is offline
Banned
 
Join Date: May 2013
Location: hjklò
Posts: 281
Thanks: 74
Thanked 320 Times in 157 Posts
sentinelks is on a distinguished road
line red create bin

Code:
#define Internal "C:\Program Files (x86)\Truck Racer\"
#define MyAppName "My Program"
#define MyAppVersion "1.5"
#define MyAppPublisher "My Company, Inc."
#define MyAppExeName "MyProg.exe"

[Setup]
AppName={#MyAppName}
AppVersion={#MyAppVersion}
AppPublisher={#MyAppPublisher}
DefaultDirName={pf}\{#MyAppName}
DefaultGroupName={#MyAppName}
AllowNoIcons=yes
OutputBaseFilename=setup
Compression=lzma
SolidCompression=no
DiskSpanning=yes
SlicesPerDisk=3
DiskSliceSize=1566000000

[Languages]
Name: "default"; MessagesFile: "compiler:Default.isl"

[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked; OnlyBelowVersion: 0,6.1


[Icons]
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon

[File]
#ifdef Internal
Source:{#Internal}*; DestDir: {app}; Flags: ignoreversion recursesubdirs; Excludes:unins*;
#endif
Reply With Quote
  #836  
Old 27-12-2013, 04:57
reiji777's Avatar
reiji777 reiji777 is offline
Registered User
 
Join Date: May 2011
Location: Tokyo
Posts: 53
Thanks: 50
Thanked 3 Times in 3 Posts
reiji777 is on a distinguished road
how to make CIU 1.0.0.6 compatible with windows 8.1? because i often getting error on win8
Reply With Quote
  #837  
Old 27-12-2013, 05:56
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
Just tested CIU 1.0.0.6 on Windows 8.1 Enterprise and it works perfect.
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
reiji777 (28-12-2013)
  #838  
Old 29-12-2013, 07:19
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
Hello dear ISDone experts,
Is it possible to remove/modify the highlighted text in the popup error message in ISDone?
The title modify is not available in english.ini or it's missing.
I've tried resource hacker and it didn't help.

Thanks
Attached Images
File Type: jpg 12-11-2013 2-18-05 AM.jpg (6.2 KB, 115 views)
Reply With Quote
  #839  
Old 29-12-2013, 20:11
y_thelastknight's Avatar
y_thelastknight y_thelastknight is offline
Registered User
 
Join Date: Mar 2010
Location: Canada
Posts: 437
Thanks: 616
Thanked 576 Times in 213 Posts
y_thelastknight is on a distinguished road
is this correct? if not help me with this.

Quote:
procedure AboutButtonOnClick(Sender: TObject);
begin
If CurPageID=wpWelcome then
begin
MsgBox('Hello.', mbInformation, MB_OK);
end;
end;

Last edited by y_thelastknight; 29-12-2013 at 21:15.
Reply With Quote
  #840  
Old 30-12-2013, 04:26
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 y_thelastknight View Post
is this correct? if not help me with this.
Code:
procedure AboutButtonOnClick(Sender: TObject);
begin
MsgBox('Hello.', mbInformation, MB_OK);
end;
Reply With Quote
The Following 2 Users Say Thank You to altef_4 For This Useful Post:
papas (02-09-2016), y_thelastknight (30-12-2013)
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 01:59.


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