gan-installation-package icon indicating copy to clipboard operation
gan-installation-package copied to clipboard

一个仿有道云笔记的安装包,使用Inno Setup制作

Results 2 gan-installation-package issues
Sort by recently updated
recently updated
newest added

### 说明 在InitializeSetup中有执行卸载的程序,但无法生效,原因是卸载的代码放在了while 判断运行中的循环中,如果没有运行中程序将不会执行卸载程序。 ``` //修改前 function InitializeSetup():boolean; var IsAppRunning: boolean; IsAppRunning1: boolean; ResultStr: String; ResultCode: Integer; begin Result := true; // 第二步,安装时判断客户端是否正在运行 begin Result:= true;//安装程序继续 IsAppRunning:= IsModuleLoaded('YNote.exe'); IsAppRunning1:= IsModuleLoaded('YNote_1.exe');...