Пользователь
Сообщения: 129
Благодарности: 76
|
Профиль
|
Отправить PM
| Цитировать
Цитата vitl:
Что сделать, чтобы Ваш приведенный код выполнялся правильно при задействованном DisableDirPage=yes ? »
|
читать дальше »
Код:
[Setup]
AppName=My Program
AppVerName=My Program
DefaultDirName={pf}\My Program
DisableDirPage=yes
DefaultGroupName=My Program
OutputDir=userdocs:My Program.
[code]
procedure CurPageChanged(CurPageID: Integer);
var
ErrorCode: Integer;
begin
if CurPageID = wpWelcome then
WizardForm.NextButton.OnClick(WizardForm.NextButton);
if CurPageID = wpReady then
WizardForm.BackButton.Hide;
if CurPageID = wpFinished then
if FileExists(ExpandConstant('{src}\setup_2.exe')) then
begin
Exec(ExpandConstant('{src}\setup_2.exe'), '', '', SW_SHOWNORMAL, ewNoWait, ErrorCode);
WizardForm.NextButton.OnClick(WizardForm.NextButton);
end;
end;
|
Отправлено: 02:07, 10-12-2009
| #608
|