View Single Post
  #12  
Old 28-02-2013, 10:59
altef_4's Avatar
altef_4 altef_4 is offline
Registered User
 
Join Date: Mar 2012
Location: Ukraine
Posts: 361
Thanks: 248
Thanked 1,022 Times in 239 Posts
altef_4 is on a distinguished road
Change this
Code:
LabelPct1.Caption := IntToStr(OveralPct div 10) '.' chr(48   OveralPct mod 10) '%';

  LabelCurrFileName.Caption:=ExpandConstant('{cm:ExtractedFile} ') MinimizePathName(CurrentFile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX(100));
  LabelTime1.Caption:=ExpandConstant('{cm:ElapsedTime} ') TimeStr2;
  LabelTime2.Caption:=ExpandConstant('{cm:RemainingTime} ') TimeStr1;
  LabelTime3.Caption:=ExpandConstant('{cm:AllElapsedTime}') TimeStr3;
to this
Code:
LabelCurrFileName.Caption:=ExpandConstant('{cm:ExtractedFile} ') MinimizePathName(ExpandConstant('{app}\ ') + CurrentFile, LabelCurrFileName.Font,WizardForm.FilenameLabel.Width);

Last edited by altef_4; 28-02-2013 at 11:01.
Reply With Quote
The Following User Says Thank You to altef_4 For This Useful Post:
buttignol (28-02-2013)