View Single Post
  #322  
Old 06-06-2018, 08:22
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,335 Times in 2,837 Posts
KaktoR is on a distinguished road
Change resolution for image in

Code:
WizardForm.WizardBitmapImage.Width := 497;
  WizardForm.WizardBitmapImage.Height := 314;

WizardForm.WizardBitmapImage2.Width := 497;
  WizardForm.WizardBitmapImage2.Height := 314;
and buttons for example
Code:
MusicButton := TNewButton.Create(WizardForm);
      with MusicButton do begin
        Parent  := WizardForm;
        Left    := ScaleX(169);
        Top     := ScaleY(327);
        Width   := ScaleX(75);
        Height  := ScaleY(23);
        Caption := ExpandConstant('{cm:MusicButtonCaptionSoundOff}');
        OnClick := @MusicButtonClick;
      end;
__________________
Haters gonna hate
Reply With Quote