Reputation: 1824
Is it possible to hide/remove/not show the small wizard image in top right corner:
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
Reputation: 202088
Hide the WizardSmallBitmapImage
control:
[Code]
procedure InitializeWizard();
begin
WizardForm.WizardSmallBitmapImage.Visible := False;
end;
Upvotes: 4