|
|
|
#1
|
|||
|
|||
|
I'm getting this error on merging setup.cab to setup.exe according to yener90's script v1.0.0.6 . Please help me. Thanks in advance. Sorry for my bad English.
Error:- Setup couldn't find necessary files. Last edited by Vatsal Singh; 15-01-2014 at 06:26. |
| Sponsored Links |
|
#2
|
||||
|
||||
|
Quote:
#define internal NOT ;#define internal then your setup.cab needs to be extracted into its setup folder. ( same place as ISS scripts ). Then when you compile both scripts, it will merge the setup folder ( basically your setup.cab ) into the exe. Make sure that if you used compress.bat to make your files that the setup folder has arc.ini in the root of the folder. Also that you've specified the extract settings in setup.ini properly... IE: Code:
[ExtractSettings]
FreeArcFile1=Data1.cab;DestDir:{app};Disk:1;
FreeArcFile2=Data2.cab;DestDir:{app};Disk:2;
|
| The Following User Says Thank You to pakrat2k2 For This Useful Post: | ||
y_thelastknight (15-01-2014) | ||
|
#3
|
||||
|
||||
|
Quote:
__________________
Glass BB | BlackBox v2 | Portable Installer |
|
#4
|
||||
|
||||
|
all info is in REV0's topic here>
http://fileforums.com/showthread.php?t=93191 |
| The Following User Says Thank You to pakrat2k2 For This Useful Post: | ||
y_thelastknight (16-01-2014) | ||
|
#5
|
||||
|
||||
|
I would like to ask how to add bmp image to a button. please help
Last edited by reiji777; 21-01-2014 at 09:48. |
|
#7
|
|||
|
|||
| The Following User Says Thank You to mask512 For This Useful Post: | ||
y_thelastknight (15-01-2014) | ||
|
#8
|
||||
|
||||
|
i use axialis iconworkshop to create icons. and there more software to create or edit icons.
__________________
Glass BB | BlackBox v2 | Portable Installer |
|
#9
|
|||
|
|||
|
#10
|
||||
|
||||
|
how to create a quick install button for normal installer.
__________________
Glass BB | BlackBox v2 | Portable Installer |
|
#11
|
||||
|
||||
|
Quote:
function shouldskippage(pageid: integer):boolean; begin case pageid of wplicense,wppassword: //add or remove skiped pages result:=true; else result:=false; end; end; |
| The Following 2 Users Say Thank You to altef_4 For This Useful Post: | ||
papas (02-09-2016), y_thelastknight (21-01-2014) | ||
|
#12
|
||||
|
||||
|
thanks. used like this
![]() Code:
function shouldskippage(pageid: integer):boolean;
begin
If RadioButton1.Checked=true then
case pageid of
wpSelectDir,wpSelectProgramGroup,wpReady: //add or remove skiped pages
result:=true;
else
result:=false;
end;
end;
__________________
Glass BB | BlackBox v2 | Portable Installer |
|
#13
|
||||
|
||||
|
Quote:
Code:
function shouldskippage(pageid: integer):boolean;
begin
If RadioButton1.Checked then
case pageid of
wpSelectDir,wpSelectProgramGroup,wpReady: result:=true;
else
result:=false;
else result:=false;
end;
|
| The Following 2 Users Say Thank You to altef_4 For This Useful Post: | ||
papas (02-09-2016), y_thelastknight (21-01-2014) | ||
|
#14
|
||||
|
||||
__________________
Glass BB | BlackBox v2 | Portable Installer |
|
#15
|
||||
|
||||
|
uuups, sorry little error, i think you already fix it yourself, but if no - hare edited code
Code:
function shouldskippage(pageid: integer):boolean;
begin
If RadioButton1.Checked then
case pageid of
wpSelectDir,wpSelectProgramGroup,wpReady: result:=true;
else
result:=false;
end
else result:=false;
end;
Last edited by altef_4; 21-01-2014 at 06:39. |
| The Following User Says Thank You to altef_4 For This Useful Post: | ||
papas (02-09-2016) | ||
![]() |
|
|
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 |