Mike Torrettinni
Mike Torrettinni

Reputation: 1824

Hide Inno Setup wizard small image

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.

Upvotes: 3

Views: 451

Answers (1)

Martin Prikryl
Martin Prikryl

Reputation: 202088

Hide the WizardSmallBitmapImage control:

[Code]

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

enter image description here

Upvotes: 4

Related Questions