|
|
|
#1
|
||||
|
||||
|
@Pein46
example: [Code] var NewCheckBox: TCheckBox; procedure WizardFormResizer(Sender: TObject); begin if NewCheckBox.Checked = True then begin WizardForm.Width:=NewWizardFormSizeX WizardForm.Height:=NewWizardFormSizeY end else begin WizardForm.Width:=OldWizardFormSizeX WizardForm.Height:=OldWizardFormSizeY end; end; procedure InitializeWizard; begin NewCheckBox:= TCheckBox.Create(WizardForm); with NewCheckBox do begin Parent:= WizardForm.InstallingPage; Left:= SetPositionX; Top:= SetPositionY; Width:= SetSizeX; Height:= SetSizeY; Checked:= False; OnClick:= @WizardFormResizer; Caption := 'Compact View'; end; end; but you'll have to resize progressbar and lables
|
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
Pein46 (22-04-2013) | ||
| Sponsored Links |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup | REV0 | Conversion Tutorials | 129 | 21-05-2021 05:51 |
| INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 06:57 |
| Copy file with Inno Setup Script | emrahcey | Software | 1 | 02-07-2010 08:24 |