ElramV
ElramV

Reputation: 325

Inno - how to address the setup window title?

how can I address this text from the code? enter image description herer.png

Upvotes: 2

Views: 393

Answers (1)

TLama
TLama

Reputation: 76683

You can access it by the Caption property of the WizardForm, e.g.:

[Code]
procedure InitializeWizard;
begin
  WizardForm.Caption := 'Hi, I''m the installer!';
end;

Upvotes: 2

Related Questions