View Single Post
  #324  
Old 02-07-2018, 05:50
Schabik Schabik is offline
Registered User
 
Join Date: Dec 2008
Location: Somewhere in Poland
Posts: 152
Thanks: 17
Thanked 35 Times in 32 Posts
Schabik is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
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;

Nope, Website button is moving but when I tried to resize the image it's not resizing. My image has 750x500 but when I Tried to resize This happens:2018-07-02_14h45_36.png


Original image looks like this:
TS3collection1.jpg
Reply With Quote