Leogreen
Leogreen

Reputation: 701

How to show Space required label in Inno setup

How to show Space required label in Inno setup?

Space required label

Upvotes: 1

Views: 1148

Answers (1)

Slappy
Slappy

Reputation: 5472

I think this label is visible by default, but you can change it's visibility with this code:

[Code]
procedure InitializeWizard;
begin
  WizardForm.DiskSpaceLabel.Visible := True; // False to hide
end;

Upvotes: 4

Related Questions