FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   INNO TROUBLESHOOT - Questions Here (https://fileforums.com/showthread.php?t=93193)

danswano 10-12-2013 15:59

1 Attachment(s)
Dude i meant the title of the window it self not the content.

hackjack 15-12-2013 01:35

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

Dubl1n 19-12-2013 11:20

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

Joe Forster/STA 23-12-2013 02:30

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. :))

GloverK1911 24-12-2013 17:01

How to make a setup file can extract the .bin file?

sentinelks 24-12-2013 17:12

Quote:

Originally Posted by GloverK1911 (Post 427697)
How to make a setup file can extract the .bin file?

Please more details:rolleyes:

chuotchu001 25-12-2013 01:00

Quote:

Originally Posted by GloverK1911 (Post 427697)
How to make a setup file can extract the .bin file?

Go here ;)

GloverK1911 25-12-2013 05:53

Quote:

Originally Posted by sentinelks (Post 427698)
Please more details:rolleyes:

How to make a setup file like this to extract the .bin file compressed
http://i.minus.com/i5u59F4NrlvQc.png

http://i.minus.com/i1JK4lK7H4LSU.png

Razor12911 25-12-2013 05:56

that's an ordinary installer.

all that it require for you is to set up the product files, set bmp images, then done.

sentinelks 25-12-2013 06:07

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


reiji777 27-12-2013 04:57

how to make CIU 1.0.0.6 compatible with windows 8.1? because i often getting error on win8

Razor12911 27-12-2013 05:56

Just tested CIU 1.0.0.6 on Windows 8.1 Enterprise and it works perfect.

danswano 29-12-2013 07:19

1 Attachment(s)
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 :)

y_thelastknight 29-12-2013 20:11

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;

altef_4 30-12-2013 04:26

Quote:

Originally Posted by y_thelastknight (Post 427844)
is this correct? if not help me with this.

Code:

procedure AboutButtonOnClick(Sender: TObject);
begin
MsgBox('Hello.', mbInformation, MB_OK);
end;



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

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