这是我的代码:
[Code]
procedure CurStepChanged(CurStep: TSetupStep);
var
ErrorCode: integer;
begin
if CurStep = ssPostInstall then
begin;
if MsgBox('Czy chcesz zainstalować pakiet DirectX9?', mbConfirmation, MB_YESNO) = IDYES then
begin
ShellExec('', ExpandConstant('{src}\directx\dxsetup.exe'), '', '', SW_SHOW, ewWaitUntilTerminated, ErrorCode);
end;
end;
end;
可以只重命名一个MsgBox的标题吗?假设我想创建另一个MsgBox,我想要另外两个标题,例如:Instalator#1,Instalator#2。语言文件的更改将影响MsgBox'es。