View Single Post
  #940  
Old 23-01-2021, 16:07
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
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;
Reply With Quote
The Following 2 Users Say Thank You to Cesar82 For This Useful Post:
mausschieber (24-01-2021), XxAZAxX (23-01-2021)