lazarus/tools/install/win/innoscript/about.pas
martin b68a8a8129 Win-Installer: clean up
git-svn-id: trunk@42529 -
2013-08-30 17:14:52 +00:00

18 lines
397 B
ObjectPascal

// Info displayed during install progress
Procedure AddInfoComponentsToProgressWizzard;
var
m: TMemo;
begin
WizardForm.ProgressGauge.Parent.Handle;
m:= TMemo.Create(WizardForm);
AddComponentToPage(m, WizardForm.ProgressGauge, 10, 0, 0, -15);
m.ReadOnly := True;
m.WordWrap := True;
m.ScrollBars := ssVertical;
m.Text := Format(CustomMessage('DuringInstall'), [#13#10]);
end;