How to add clickable links to custom page in Inno Setup using RichEditViewer?
问题 How to add clickable link to RichEditViewer in Inno Setup? I tried this solution How to add clickable links to custom Inno Setup WelcomeLabel? Using this code below: [Code] var Page: TWizardPage; procedure CreateTheWizardPages; var RichViewer1 : TRichEditViewer; begin Page := CreateCustomPage(wpReady, 'Custom', 'Page'); RichViewer1 := TRichEditViewer.Create(Page); RichViewer1.Left := 0; RichViewer1.Top := 30; RichViewer1.width:=400; RichViewer1.WordWrap := True; RichViewer1.BorderStyle :=