Inno Setup Form Designer 2.0.8 Download Page

[Setup] AppName=My App AppVersion=1.0 DefaultDirName=pf\MyApp [Registry] Root: HKCU; Subkey: "Software\MyApp"; ValueType: string; ValueName: "UserName"; ValueData: "code:GetUserName"

| Section | Purpose | |---------|---------| | | Controls: TForm, TButton, TEdit, TCheckBox, TListBox, TRadioGroup, TLabel, etc. | | Design Surface | Your dialog (starts as a blank form) | | Object Inspector | Properties (Left, Top, Width, Height, Caption, Font, Color) and Events | | Code Preview | Shows generated Pascal script in real time | inno setup form designer 2.0.8 download

BtnOK := TButton.Create(Result); with BtnOK do begin Parent := Result; Caption := 'OK'; Left := 220; Top := 240; ModalResult := mrOK; end; [Setup] AppName=My App AppVersion=1

Then call the form from InitializeWizard or a custom button: Caption := 'OK'