Is there a way to remove or hide the horizontal line controls from Innosetup wizard pages by code to give it a little more modern touch?
See example here:
Thank you!
The upper horizontal line highlighted in your screenshot is the WizardForm.Bevel1
component, whilst the bottom one is the WizardForm.Bevel
component. To hide both, you can write a script like this:
[Setup]
AppName=My Program
AppVersion=1.5
DefaultDirName={pf}\My Program
[Code]
procedure InitializeWizard;
begin
WizardForm.Bevel.Visible := False;
WizardForm.Bevel1.Visible := False;
end;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With