我正在使用ISDone进行游戏重新包装。为Directx和Vc ++安排了两个复选框。安装进度条适用于ssInstall部分,但是没有为ssPostinstall部分显示进度条!
这是我的示例代码
if CurStep=ssPostInstall then begin
if DirectXCB.Checked then begin
Status.Caption:='Installing DirectX';
Exec2(ExpandConstant('{src}\Redist\DirectX\Dx.cmd'),'/silent',false);
end;
if VisualCCB.Checked then begin
Status.Caption:='Installing Visual C++';
Exec2(ExpandConstant('{src}\Redist\vcredist_x86.exe'),'/silent',false);
end;
end;
if (CurStep=ssInstall) and ISDoneError then begin
Exec2(ExpandConstant('{uninstallexe}'), '/VERYSILENT', false);
end;
end;
请提出任何想法!