Quote:
Originally Posted by Cesar82
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.