Advertisement
TLama

Untitled

Apr 21st, 2015
347
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.35 KB | None | 0 0
  1. #define ForeignSetup "ForeignSetup.exe"
  2.  
  3. [Setup]
  4. AppName=My Program
  5. AppVersion=1.5
  6. DefaultDirName={pf}\My Program
  7.  
  8. [Files]
  9. Source: "{#ForeignSetup}"; Flags: dontcopy
  10.  
  11. [Run]
  12. Filename: "{tmp}\{#ForeignSetup}"
  13.  
  14. [Code]
  15. const
  16.   ForeignSetup = '{#ForeignSetup}';
  17.  
  18. procedure InitializeWizard;
  19. begin
  20.   MsgBox(ForeignSetup, mbInformation, MB_OK);
  21. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement