I want to know how how to change other window caption's name in Inno Setup, when the message box appears "File not exist", "File exist", "After installation is cancelled" and "installation cancel".
[Code]
// This is code how to display a message after installation is cancelled
var
LastStep: TSetupStep;
procedure CurStepChanged(CurStep: TSetupStep);
begin
Log(Format('Step: %d', [CurStep]));
LastStep := CurStep;
end;
procedure DeinitializeSetup();
begin
{ Installation started, but never finished => It must have been cancelled. }
if LastStep = ssInstall then
begin
MsgBox('Տեղադրումը չեղարկվեց:', mbInformation, MB_OK);
end;
end;