Advertisement
TLama

Untitled

Jul 17th, 2014
365
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.32 KB | None | 0 0
  1. [Setup]
  2. AppName=My Program
  3. AppVersion=1.5
  4. DefaultDirName={pf}\My Program
  5.  
  6. [Code]
  7. function GetServerID(Param: string): string;
  8. begin
  9.   Result := 'your server :)';
  10. end;
  11.  
  12. procedure InitializeWizard;
  13. var
  14.   S: string;
  15. begin
  16.   S := ExpandConstant('Hello, I''m {code:GetServerID}');
  17.   MsgBox(S, mbInformation, MB_OK);
  18. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement