Var
WLabel2: TLabel;
procedure initializeWizard();
WLabel2:=TLabel.Create(WizardForm);
with WLabel2 do
begin
WLabel2.Left := ScaleX(30);
WLabel2.Top := ScaleY(126);
WLabel2.Width := ScaleX(400);
WLabel2.Height := ScaleY(200);
WLabel2.AutoSize := False;
WLabel2.WordWrap := True;
WLabel2.Font.Size := 12;
;WLabel2.Font.Style := [fsBold];
WLabel2.Font.Color:= ClWhite;
WLabel2.Font.Name:= '{#font}';
WLabel2.ShowAccelChar := False;
WLabel2.Caption := WizardForm.WelcomeLabel2.Caption;
WLabel2.Transparent := True;
WLabel2.Parent := WizardForm.WelcomePage;
end;
begin
ExtractTemporaryFile('LEFT.bmp');
bottom_img:= TBitmapImage.Create(WizardForm.Finishedpage);
bottom_img.Bitmap.LoadFromFile(ExpandConstant('{tmp}\LEFT.bmp'));
bottom_img.Parent:= WizardForm.FinishedPage;
bottom_img.Stretch:= True;
bottom_img.Width := WelcomePage.Width;
bottom_img.Height := WelcomePage.Height;
end;
begin
WizardForm.WelcomePage.Hide
WizardForm.WelcomeLabel1.Hide
WizardForm.WelcomeLabel2.Hide
end;