Advertisement
TLama

Untitled

Aug 7th, 2013
1,007
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.30 KB | None | 0 0
  1. #define DirName "C:\Our App"
  2.  
  3. [Setup]
  4. AppName=My Program
  5. AppVersion=1.5
  6. DefaultDirName={#DirName}
  7. OutputDir=userdocs:Inno Setup Examples Output
  8.  
  9. [Code]
  10. procedure InitializeWizard;
  11. var
  12.   InstallDir: string;
  13. begin
  14.   InstallDir := '{#DirName}';
  15.   MsgBox(InstallDir, mbInformation, MB_OK);
  16. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement