View Single Post
  #3  
Old 01-01-2021, 13:10
velanne velanne is offline
Registered User
 
Join Date: May 2015
Location: france
Posts: 4
Thanks: 2
Thanked 1 Time in 1 Post
velanne is on a distinguished road
Thumbs up

Quote:
Originally Posted by Cesar82 View Post
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;
Thank you it works now
Reply With Quote
The Following User Says Thank You to velanne For This Useful Post:
Cesar82 (01-01-2021)