View Single Post
  #941  
Old 23-01-2021, 16:56
XxAZAxX XxAZAxX is offline
Registered User
 
Join Date: Jul 2018
Location: LUNA
Posts: 26
Thanks: 48
Thanked 6 Times in 5 Posts
XxAZAxX is on a distinguished road
Smile Hi everyone

Quote:
Originally Posted by Cesar82 View Post
The ASIS v7.2.2 has an error in the script (Thanks to XxAZAxX)
It is necessary to insert the part highlighted in "Orange" in the script.
Code:
procedure DeinitializeUninstall();
begin
  #if VCL == "1"
    if FileExists(ExpandConstant('{tmp}\VclStylesInno.dll')) and FileExists(ExpandConstant('{tmp}\{#VCLName}')) then
      UnLoadVCLStyles();
  #elif Cjstyles == "1"
    if FileExists(ExpandConstant('{tmp}\ISSkin.dll')) and FileExists(ExpandConstant('{tmp}\{#CjstylesName}')) then
    begin
      ShowWindow(0, SW_HIDE);
      UnloadSkin();
    end;
  #endif
end;
Thanks go to you Cesar82, I just "found" the problem, but you solved it for me! so thank you very much bro.
Reply With Quote