How can I create my own form or page in an Inno setup based installer?
问题 I am new in creating installers. I need to create a form with 3 textboxes: Domain User name User password and then save them to the registry. I have already known how to save data to the registry. 回答1: Inno has a flexible dialog/page engine which allows you to create custom pages in the wizard flow. See the CodeDlg.iss example included with the Inno install for a good example of how to do this. 回答2: [Code] var lblDomain: TLabel; lblUserName: TLabel; lblPassword: TLabel; txtDomain: TEdit;