View Single Post
  #1322  
Old 24-08-2017, 07:17
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,336 Times in 2,838 Posts
KaktoR is on a distinguished road
Code:
procedure CurPageChanged(CurPageID: integer);
  begin
  case CurPageID of
    wpInstalling: begin
      WizardForm.ClientHeight := (180);
      WizardForm.ClientWidth := (497);
      WizardForm.CancelButton.SetBounds(ScaleX(75), ScaleY(23), ScaleX(412), ScaleY(327));
...
...
I'm not able to move Cancel button on installing page. Anyone knows why?

Also, BackButton just disappears with this

Code:
wpSelectDir: begin
      WizardForm.NextButton.Caption := 'Install';
      WizardForm.BackButton.SetBounds(ScaleX(75), ScaleY(23), ScaleX(242), ScaleY(227));
I have to define these buttons seperatly? I just thought because there are already in "InnoSetup Support" tab.
__________________
Haters gonna hate

Last edited by KaktoR; 24-08-2017 at 07:19.
Reply With Quote