#1456
|
|||
|
|||
Quote:
Code:
function ISDoneInit (RecordFileName:string; TimeType, Comp1, Comp2, Comp3:Cardinal; WinHandle, NeededMem:longint; callback: TCallback):boolean; Code:
function SrepInit (TmpPath:PAnsiChar; VirtMem, MaxSave:Cardinal):boolean; function PrecompInit (TmpPath:PAnsiChar; VirtMem:cardinal; PrecompVers:single):boolean; Code:
function FileSearchInit (RecursiveSubDir:boolean):boolean; If you specify true Then when specifying the input file name containing the mask (eg * .pcf), files will be searched in the same in all subdirectories from the specified path. If false - Only in the specified folder. |
The Following User Says Thank You to ffmla For This Useful Post: | ||
Cesar82 (10-05-2021) |
Sponsored Links |
#1457
|
|||
|
|||
Can anyone here tell me how can i direct my setup to install a font without informing the user and the first priority of setup must be installing the font
Thanks |
#1458
|
|||
|
|||
Quote:
|
The Following User Says Thank You to pratikpatel8982 For This Useful Post: | ||
GaMEr_2077 (28-05-2021) |
#1459
|
|||
|
|||
Components Full and Custom Help
Hello everyone, trying to know how I can get the components to be fixed when in full installation but then selectable when in custom installation:
-The Full Installation at the moment- https://imgur.com/aS2TWYh -The Custom Installation at the moment- https://imgur.com/Lgl13Fl Thanks for the help! |
#1460
|
|||
|
|||
Can someone Explain what does those two hyphen or minus do?
Code:
packcmd = xtool precomp -mzlib+preflate -c32mb -t100p --dbase=temp.db - - <stdin> <stdout> Also these "<stdin> <stdout>" are only used in Installer's Arc.ini right? For UnArc.dll?
__________________
Who's Got Time To Play Games? Huh?? |
The Following User Says Thank You to Prince4 For This Useful Post: | ||
GaMEr_2077 (06-06-2021) |
#1461
|
|||
|
|||
is there any option in inno for example if component A is selected then the setup will extract specified file and if selected B then other specified file
Edit:- Files are embeded in installer |
#1462
|
|||
|
|||
Quote:
Code:
if LowResourceCB.Checked then begin ExtractTemporaryFile('low_ARC.ini'); ExtractTemporaryFile('low_CLS.ini'); end else begin ExtractTemporaryFile('ARC.INI'); ExtractTemporaryFile('CLS.INI'); end; |
The Following User Says Thank You to Masquerade For This Useful Post: | ||
GaMEr_2077 (07-06-2021) |
#1463
|
|||
|
|||
![]() Quote:
__________________
Who's Got Time To Play Games? Huh?? |
#1464
|
||||
|
||||
Try like this
Code:
if LowResourceCB.Checked then begin ExtractTemporaryFile('low_ARC.ini'); ExtractTemporaryFile('low_CLS.ini'); RenameFile(ExpandConstant('{tmp}\low_ARC.ini', '{tmp}\Arc.ini')); RenameFile(ExpandConstant('{tmp}\low_CLS.ini', '{tmp}\Cls.ini')); end else begin ExtractTemporaryFile('ARC.INI'); ExtractTemporaryFile('CLS.INI'); end;
__________________
Haters gonna hate
|
The Following 2 Users Say Thank You to KaktoR For This Useful Post: | ||
GaMEr_2077 (08-06-2021), Prince4 (08-06-2021) |
#1465
|
|||
|
|||
How to show custom text instead of LABELCURRFILE
I know that we need to put .Hide in front of it to stop showing current file name but what to do to show custom text like Extracting or Unpacking...... etc THANKS |
#1466
|
|||
|
|||
I also need that.....
|
#1467
|
||||
|
||||
LABELCURFILE is not inside InnoSetup Support, maybe you mean 'StatusLabel' instead?
StatusLabel is showing 'Unpacking Files ...', FileNameLabel is showing current file. However, to make a new TLabel or TNewStaticText variable you can do something like this. Code:
var MyText: TLabel; procedure InitializeWizard(); begin MyText := TLabel.Create(WizardForm); with MyText do begin Parent := WizardForm.InstallingPage; Caption := 'My Text here'; // you can also use constants like '{cm:MyText}' with [CustomMessage] section if you like it to make multi langual Left := ScaleX(1); Top := ScaleY(1); Width := ScaleX(150); Height := ScaleY(12); Wordwrap := False; end; end; procedure CurPageChanged(CurPageID: integer); if CurPageID = wpInstalling then begin //Here you can hide (x.Hide) or show (x.Show) your variable MyText.Show; end; end;
__________________
Haters gonna hate
|
The Following 2 Users Say Thank You to KaktoR For This Useful Post: | ||
Epic Titan 69 (11-06-2021), GaMEr_2077 (11-06-2021) |
#1468
|
|||
|
|||
There was a plugin for Inno Setup that allowed for bat file / console application output to be redirected to the inno Setup memo window instead of producing a cmd window.
The name seems to have slipped my mind - can anyone help? |
#1469
|
||||
|
||||
Hi all,
Does anyone know if Inno Setup supports checksum parts/segments/other-name-here? A lot of my conversions have selective/optional .bins and I usually only supply the checksums for the "main" files, but was wondering if I could have multiple smaller checksum files for each component then splice these together to verify selected parts. |
#1470
|
|||
|
|||
Quote:
Last edited by Masquerade; 17-06-2021 at 13:53. |
The Following 2 Users Say Thank You to Masquerade For This Useful Post: | ||
GaMEr_2077 (17-06-2021), L33THAK0R (17-06-2021) |
![]() |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup | REV0 | Conversion Tutorials | 129 | 21-05-2021 06:51 |
INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 07:57 |
Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 10:48 |