我有一个问题,我需要你的帮助..我想找到一种不同的方式来放置一个透明的启动屏幕或更正我的代码。这里的代码可以工作......但是有一个问题,有些人在安装结束时会出错。
这是安装结束时错误的样子
我检查了代码中的另一行,发现问题出在启动屏幕的代码上,如果我将其删除,安装程序将完美运行,我看到我需要的是 aprocedure DeinitializeSetup();
但我不知道如何将其放入启动屏幕部分,如果我删除其他代码中的内容,例如皮肤,徽标等,我会收到这种错误procedure DeinitializeSetup();
。进入 windows 临时文件夹的文件...然后我需要的是procedure DeinitializeSetup();
启动屏幕代码中的解决这个问题... :( 这是任何人都可以测试IsUtilsHb.dll的 dll 文件
那么...请如果有人知道放置透明启动屏幕的不同方法...不胜感激..或更好..修复此代码部分:)
[setup]
AppName=Slash PNG
AppVerName=1.0
DefaultDirName={pf}\program
[Languages]
Name: "spanish"; MessagesFile: "compiler:Languages\Spanish.isl"
[Files]
Source: IsUtilsHb.dll; DestDir: {app}; Flags: dontcopy
Source: SplashScreen.png; DestDir: {app}; Flags: dontcopy
[Code]
function SplashScreen(hWnd: Integer; pathPng: String; nSleep: Integer): Integer;
external 'SplashScreen@files:IsUtilsHb.dll stdcall';
procedure InitializeWizard();
var
SplashFileName: string;
begin
SplashFileName := ExpandConstant('{tmp}\SplashScreen.png');
ExtractTemporaryFile('SplashScreen.png');
SplashScreen(StrToInt(ExpandConstant('{hwnd}')), SplashFileName, 5000);
end;