K
Познакомьтесь с пентестом веб-приложений на практике в нашем новом бесплатном курсе
???[/b][color=#FF0000]
[CODE]
var
Label1: TLabel;
Edit1: TEdit;
procedure CustomForm_Activate(Page: TWizardPage);
begin
end;
function CustomForm_ShouldSkipPage(Page: TWizardPage): Boolean;
begin
Result := False;
end;
function CustomForm_BackButtonClick(Page: TWizardPage): Boolean;
begin
Result := True;
end;
function CustomForm_NextButtonClick(Page: TWizardPage): Boolean;
begin
Result := True;
end;
procedure CustomForm_CancelButtonClick(Page: TWizardPage; var Cancel, Confirm: Boolean);
begin
end;
function CustomForm_CreatePage(PreviousPageId: Integer): Integer;
var
Page: TWizardPage;
begin
Page := CreateCustomPage(
PreviousPageId,
ExpandConstant('{cm:CustomFormCaption}'),
ExpandConstant('{cm:CustomFormDescription}')
);
{ Label1 }
Label1 := TLabel.Create(Page);
with Label1 do
begin
Parent := Page.Surface;
Left := ScaleX(152);
Top := ScaleY(24);
Width := ScaleX(31);
Height := ScaleY(13);
Caption := 'Наименование организации';
end;
{ Edit1 }
Edit1 := TEdit.Create(Page);
with Edit1 do
begin
Parent := Page.Surface;
Left := ScaleX(16);
Top := ScaleY(24);
Width := ScaleX(129);
Height := ScaleY(21);
TabOrder := 0;
Text := '';
end;
with Page do
begin
OnActivate := @CustomForm_Activate;
OnShouldSkipPage := @CustomForm_ShouldSkipPage;
OnBackButtonClick := @CustomForm_BackButtonClick;
OnNextButtonClick := @CustomForm_NextButtonClick;
OnCancelButtonClick := @CustomForm_CancelButtonClick;
end;
Result := Page.ID;
end;
procedure InitializeWizard();
begin
CustomForm_CreatePage(wpWelcome);
end;
[b]Заранее спасибо![/b]
Помогите, пожалуйста. Где найти в реестре путь к установленной программе? Нужно для того, чтобы вставить код в Inno Setup.
Обучение наступательной кибербезопасности в игровой форме. Начать игру!