|
#826
|
|||
|
|||
|
Dude i meant the title of the window it self not the content.
Last edited by danswano; 10-12-2013 at 16:18. |
| Sponsored Links |
|
#827
|
|||
|
|||
|
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 |
|
#828
|
|||
|
|||
|
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 |
|
#829
|
||||
|
||||
|
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! |
|
#830
|
||||
|
||||
|
How to make a setup file can extract the .bin file?
|
|
#831
|
|||
|
|||
|
Please more details
|
|
#833
|
||||
|
||||
|
How to make a setup file like this to extract the .bin file compressed
![]()
|
|
#834
|
||||
|
||||
|
that's an ordinary installer.
all that it require for you is to set up the product files, set bmp images, then done. |
|
#835
|
|||
|
|||
|
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
|
|
#836
|
||||
|
||||
|
how to make CIU 1.0.0.6 compatible with windows 8.1? because i often getting error on win8
|
|
#838
|
|||
|
|||
|
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
|
|
#839
|
||||
|
||||
|
is this correct? if not help me with this.
Quote:
Last edited by y_thelastknight; 29-12-2013 at 21:15. |
|
#840
|
||||
|
||||
|
Code:
procedure AboutButtonOnClick(Sender: TObject);
begin
MsgBox('Hello.', mbInformation, MB_OK);
end;
|
| The Following 2 Users Say Thank You to altef_4 For This Useful Post: | ||
papas (02-09-2016), y_thelastknight (30-12-2013) | ||
![]() |
|
|
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 |