|
#886
|
||||
|
||||
|
how to create a quick install button for normal installer.
__________________
Glass BB | BlackBox v2 | Portable Installer |
| Sponsored Links |
|
#887
|
||||
|
||||
|
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) | ||
|
#888
|
||||
|
||||
|
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 |
|
#889
|
||||
|
||||
|
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) | ||
|
#890
|
||||
|
||||
__________________
Glass BB | BlackBox v2 | Portable Installer |
|
#891
|
||||
|
||||
|
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) | ||
|
#892
|
||||
|
||||
|
Quote:
![]() thank Bro..
__________________
Glass BB | BlackBox v2 | Portable Installer |
|
#893
|
|||
|
|||
|
y_thelastknight, i dont know if this method is valid to you, but in mine work
.my installer have only welcome screen.. All i do its create a config button like this: Quote:
Quote:
![]() Without botva its the same, create config button and leave next how quick install.. i hope if its not valid to you, be valid for other.. Last edited by Logrim; 21-01-2014 at 07:39. |
| The Following User Says Thank You to Logrim For This Useful Post: | ||
y_thelastknight (21-01-2014) | ||
|
#894
|
||||
|
||||
|
thanks logrim.
__________________
Glass BB | BlackBox v2 | Portable Installer |
|
#895
|
|||
|
|||
|
One question.. how can i call a custom form in a button?
|
|
#896
|
||||
|
||||
|
can't understand it.
__________________
Glass BB | BlackBox v2 | Portable Installer |
|
#897
|
|||
|
|||
|
yup.. i try to explain
. i create a custom form for task. i want to call it when I click "Task" button, created with botva. But i dont know how to call it.
Last edited by Logrim; 21-01-2014 at 09:24. |
|
#898
|
||||
|
||||
|
did you add (formname).Showmodel; ???
__________________
Glass BB | BlackBox v2 | Portable Installer |
|
#899
|
|||
|
|||
|
mmm, no, i have another custom form for the search button, and i call it in initializeWizard with "CreateDirBrowseForm";
p.d. i forget to say.. i work with inno 5.5.4 not with innoultra Last edited by Logrim; 21-01-2014 at 09:33. |
|
#900
|
||||
|
||||
|
Quote:
check your personal msg
__________________
Glass BB | BlackBox v2 | Portable Installer |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
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 |