The following script makes two radio buttons on a custom page and based on their selection, chooses the installation type from the combo box (on components selection page). This selection happens only when you're leaving that custom page, so a selection change, you make in that combo box will remain, unless you visit that custom page again:
[Types]
Name: "client"; Description: "Client installation"
Name: "server"; Description: "Server installation"
Name: "custom"; Description: "Custom installation"; Flags: iscustom
[Components]
Name: "common"; Description: "Common files"; Types: client server custom; Flags: fixed
Name: "client"; Description: "Client files"; Types: client
Name: "server"; Description: "Server files"; Types: server
[Files]
Source: "Common.exe"; DestDir: "{app}"; Components: common
Source: "Client.exe"; DestDir: "{app}"; Components: client
Source: "Server.exe"; DestDir: "{app}"; Components: server
[Code]
var
CustomPage: TWizardPage;
ClientButton: TNewRadioButton;
ServerButton: TNewRadioButton;
function CreateRadioButton(AParent: TWizardPage; ATop: Integer;
ACaption: string; AHint: string): TNewRadioButton;
begin
Result := TNewRadioButton.Create(WizardForm);
with Result do
begin
Parent := AParent.Surface;
Top := ATop;
Width := AParent.SurfaceWidth;
Caption := ACaption;
Hint := AHint;
end;
end;
procedure InitializeWizard;
begin
CustomPage := CreateCustomPage(wpWelcome, 'Installation type', '');
ClientButton := CreateRadioButton(CustomPage, 16, 'Client', '');
ServerButton := CreateRadioButton(CustomPage, 34, 'Server', '');
end;
function NextButtonClick(CurPageID: Integer): Boolean;
begin
Result := True;
if CurPageID = CustomPage.ID then
begin
if ClientButton.Checked then
WizardForm.TypesCombo.ItemIndex := 0
else
if ServerButton.Checked then
WizardForm.TypesCombo.ItemIndex := 1;
WizardForm.TypesCombo.OnChange(WizardForm);
end;
end;
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…