View Single Post
  #4  
Old 28-02-2013, 01:57
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
If you want to add this text 'c: \program files\..' change this line
Code:
LabelCurrFileName.Caption: = ExpandConstant ('{cm: ExtractedFile}')  + MinimizePathName (currentfile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX (100));
to
Code:
LabelCurrFileName.Caption: = ExpandConstant ('{cm: ExtractedFile}')  +  ExpandConstant('{app}\') +   MinimizePathName (currentfile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX (100));
.

Last edited by altef_4; 28-02-2013 at 02:03.
Reply With Quote