This is my code:
[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;
It is possible to rename title only of this one MsgBox? Suppose I want to create another MsgBox and i want have 2 another titles for example: Instalator #1, Instalator #2. The change in language files will affect on both MsgBox'es.