Inno Setup: Access to custom control from OnClick event of another control
问题 I have next code for Inno Setup: procedure CheckBoxClick(Sender: TObject); begin { How to make BrowseButton visible from here? } end; procedure CreateTheWizardPage; var Page: TWizardPage; BrowseButton, FormButton: TNewButton; CheckBox: TNewCheckBox; Memo: TNewMemo; begin Page := PageFromID(wpReady); BrowseButton := TNewButton.Create(Page); CheckBox := TNewCheckBox.Create(Page); CheckBox.OnClick := @CheckBoxClick; end; I'm wondering how can I access custom controllers on the wizard page from