2013-01-15 9 views

उत्तर

7

आप उपयोग कर सकते हैं:

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

उन्हें वापस फिर से बदलने के लिए मत भूलना जब वह अपने पेज आईडी नहीं है। – Deanna