Hide Inno Setup wizard small image

Viewed 160

Is it possible to hide/remove/not show the small wizard image in top right corner:

enter image description here

I know there are WizardSmallImageFile and WizardSmallBitmapImage directives, but I can only set to a specific file, I can't set to none or something similar to tell compiler to not show any image there, at all.

1 Answers

Hide the WizardSmallBitmapImage control:

[Code]

procedure InitializeWizard();
begin
  WizardForm.WizardSmallBitmapImage.Visible := False;
end;

enter image description here

Related