2013-01-15 10 views

risposta

7

È possibile utilizzare:

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

Non dimenticare di cambiare di nuovo di nuovo quando non è il tuo ID pagina. – Deanna

Problemi correlati