Quote:
Originally Posted by velanne
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;