Reputation: 325
how can I address this text from the code? r.png
Upvotes: 2
Views: 393
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