View Single Post
  #925  
Old 01-01-2021, 12:46
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 velanne View Post
Thank you
did not work create an uninstaller and still visible.
I am using ASIS.v7.2.2 with Hotfix2 which is posted on page 61
After changes of previous post, search this part and add red color line line.

Code:
  UninstallCB := TNewCheckBox.Create(WizardForm);
  with UninstallCB do
  begin
    Parent   := WizardForm.SelectDirPage;
    Left     := ScaleX(270);
    Top      := ScaleY(150);
    Width    := ScaleX(240);
    Height   := ScaleY(17);
    Caption  := ExpandConstant('{cm:CreateUninstall}');
    Checked  := True;
    Visible  := False;
  end;
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
velanne (01-01-2021)