View Single Post
  #2  
Old 07-05-2020, 12:24
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,074
Thanks: 1,814
Thanked 2,304 Times in 787 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
Well this only happens with vcl skin.

I will investigate this soon.
Find this part in ASIS code and add line in red color.
Code:
procedure CurPageChanged(CurPageID: Integer);
var
  I: Integer;
  CompFile: String;
  ReloadComponents: Boolean;
begin

#if CompactMode == "0"  /* Full Installer Mode */

  if CurPageID = wpWelcome then
  begin
    #if UseInstallBackground == "1"
      BackgroundButton.Hide;
    #endif
    AboutButton.Show;
    PercentLabel.Hide;
    ElapsedLabel.Hide;
    RemainingLabel.Hide;
    PauseButton.Hide;
    WizardForm.DirEdit.Hide;
    WizardForm.DirBrowseButton.Hide;
    WizardForm.GroupEdit.Hide;
    WizardForm.GroupBrowseButton.Hide;
    WizardForm.PageNameLabel.Hide;
    WizardForm.PageDescriptionLabel.Hide;
    WizardForm.ProgressGauge.Hide;
    WizardForm.UserInfoNameLabel.Hide;
    WizardForm.UserInfoNameEdit.Hide;
    WizardForm.CancelButton.Top := WizardForm.NextButton.Top;
    ReloadComponents := False;
    #if UseComponents == "1"
    if ComponentsPageAvai then
    begin
    //...
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
Titeuf (07-05-2020)