2013-01-15 8 views

Odpowiedz

7

Można użyć:

procedure CurPageChanged(CurPageID: Integer); 
begin 
    if CurPageID = YourPageName.ID then begin 
    WizardForm.NextButton.Caption := SetupMessage(msgButtonInstall); 
//or := 'YourNewNextButtonText' or := ExpandConstant('{cm:YourCmTitleForNext}') 
    WizardForm.CancelButton.Caption := ExpandConstant('{cm:YourCmTitleForCancel}'); 
    end; //begin + end to make changes only for this single page 
end; 
+3

Nie zapomnij zmienić je z powrotem, gdy to nie twoja strona ID. – Deanna

Powiązane problemy