|
|
|
#1
|
||||
|
||||
|
Just change the position of the WizardForm.StatusLabel on CurStepChanged event,
and hide the StatusLabel in ssPostInstall Code:
Filename: {src}\support\{#Soft2}\vcredist_x86.exe; Parameters: /q; StatusMsg: Aguarde: Instalando {#Soft2}...; Check: Soft2 and CheckError
Code:
StatusLabel := TLabel.Create(WizardForm); With StatusLabel do begin Parent := WizardForm; Caption := 'Extraindo arquivos...'; Font.Size := 10; Font.Style := [fsBold]; Transparent := true; SetBounds(90,120,300,30); end; Code:
procedure CurStepChanged(CurrentStep: TSetupStep);
var
StatusLabel: TLabel;
begin
if (CurrentStep = ssPostInstall) then
begin
WizardForm.StatusLabel.Setbounds(StatusLabel.Left,
StatusLabel.Top, StatusLabel.Width, StatusLabel.Height);
StatusLabel.Hide;
end else
StatusLabel.Show;
end;
|
| The Following User Says Thank You to JRD! For This Useful Post: | ||
buttignol (27-11-2015) | ||
| Sponsored Links |
|
#2
|
||||
|
||||
|
Thank you friend but could not make it work you can check my script thanks
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| -+- COMPLETE - Inno Setup Script -+- | Dante1995 | Conversion Tutorials | 119 | 30-06-2023 12:42 |
| yener90's Inno Project Source Codes | yener90 | Conversion Tutorials | 1475 | 21-10-2014 09:50 |
| Frontlines: Fuel of War | DCore | PC Games - CD/DVD Conversions | 6 | 31-05-2008 18:14 |