
01-01-2021, 13:10
|
|
Registered User
|
|
Join Date: May 2015
Location: france
Posts: 4
Thanks: 2
Thanked 1 Time in 1 Post
|
|
Quote:
Originally Posted by Cesar82
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
|