0

This code adds a picture to the licnese agreement wizard page,

  picLicense := TBitmapImage.Create(WizardForm.LicensePage);
  with picLicense do
  begin
    Parent := WizardForm.LicensePage;
    Left := ScaleX(0);
    Top := ScaleY(0);
    Width := ScaleX(100);
    Height := ScaleY(100);

    Stretch := True;
    Bitmap.LoadFromFile(ExpandConstant('{tmp}\image.bmp'));
  end;

But how to add the image or any other custom control to progress dialog wizard page?

Codename K
  • 890
  • 4
  • 23
  • 52
  • 1
    Use `InstallingPage` instead of `LicensePage`? – Is this what are you looking for? – [Inno Setup - Customize installing page](https://stackoverflow.com/q/44835264/850848). – Martin Prikryl May 13 '22 at 06:36
  • Yes, that is the one. Thanks. If you add an answer to this question with `InstallingPage`, then I'll select your answer. – Codename K May 13 '22 at 11:04

0 Answers0