|
|
|
#1
|
|||
|
|||
|
her.....
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; |
| Sponsored Links |
|
#2
|
|||
|
|||
|
error massage
i used v1.4 low compress during install come out this error massage??
|
|
#3
|
|||
|
|||
|
Quote:
some bugs fixed in this version |
|
#4
|
|||
|
|||
|
what about add password to arc/bin file?
how do this? Edit: Nevermind Last edited by doritox; 25-10-2013 at 17:09. |
|
#5
|
|||
|
|||
|
add with using Encryption tab
|
![]() |
| 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 |