|
|
|
#1
|
||||
|
||||
|
How i can hide
Code:
wpInfoBefore: begin
WizardForm.NoStartMenu.Hide; WizardForm.Icons.Hide;
end;
![]() Code:
var Icons: TNewCheckBox; NoStartMenu: TNewCheckBox; Code:
NoStartMenu := TNewCheckBox.Create(WizardForm);
with NoStartMenu do begin
Parent := WizardForm.InnerPage;
Left := ScaleX(46);
Top := ScaleY(224);
Width := ScaleX(411);
Height := ScaleY(17);
Caption := 'Don''t create Start Menu folder';
OnClick := @NoStartMenuClick;
Checked := False;
end;
Icons := TNewCheckBox.Create(WizardForm);
with Icons do begin
Parent := WizardForm.InnerPage;
Left := ScaleX(46);
Top := ScaleY(248);
Width := ScaleX(411);
Height := ScaleY(17);
Caption := 'Create {#Name} Desktop Icon';
Checked := False;
end;
__________________
Haters gonna hate
Last edited by KaktoR; 25-08-2017 at 06:18. |
| Sponsored Links |
![]() |
| 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 |