procedure InitializeWizard(); var ReadmePage: TOutputMsgMemoWizardPage; Readme: String; begin // 'Courier New' // modify License page WizardForm.LicenseMemo.ScrollBars := ssBoth; WizardForm.LicenseMemo.Font.Name := 'Lucida Console'; WizardForm.LicenseMemo.Font.Size := 8; WizardForm.LicenseAcceptedRadio.Checked := true; // modify InfoBefore page WizardForm.InfoBeforeMemo.Font.Name := 'Lucida Console'; WizardForm.InfoBeforeMemo.Font.Size := 8; WizardForm.InfoBeforeMemo.ScrollBars := ssBoth; // Create the page ExtractTemporaryFile( 'README' ); LoadStringFromFile( ExpandConstant( '{tmp}\README'), Readme ); ReadmePage := CreateOutputMsgMemoPage( wpLicense, 'Information', 'This page shows some general information (the README file).', 'When you are ready to continue Setup, click Next.', Readme ); ReadmePage.RichEditViewer.Font.Name := 'Lucida Console'; ReadmePage.RichEditViewer.Font.Size := 8; ReadmePage.RichEditViewer.ScrollBars := ssBoth; end;