Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials

 
 
Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 27-11-2015, 03:10
JRD!'s Avatar
JRD! JRD! is offline
Registered User
 
Join Date: Sep 2015
Location: Matrix
Posts: 274
Thanks: 225
Thanked 600 Times in 168 Posts
JRD! is on a distinguished road
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;
That answer your question?
Reply With Quote
The Following User Says Thank You to JRD! For This Useful Post:
buttignol (27-11-2015)
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

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



All times are GMT -7. The time now is 03:38.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com