View Single Post
  #192  
Old 12-06-2013, 07:46
nicola16's Avatar
nicola16 nicola16 is offline
Registered User
 
Join Date: Nov 2008
Location: Italia
Posts: 74
Thanks: 23
Thanked 15 Times in 12 Posts
nicola16 is on a distinguished road
Code that opens the link at the end of installation

should be placed at the end of the file iss


HTML Code:
procedure CurStepChanged(CurStep: TSetupStep);
var
    ErrCode: integer;
begin
    if (CurStep=ssDone) then
    begin
        ShellExec('open', 'http://fileforums.com/', '', '', SW_SHOW, ewNoWait, ErrCode);
    end;
end;
Reply With Quote
The Following 2 Users Say Thank You to nicola16 For This Useful Post:
Kurutucu (12-06-2013), MMR (04-10-2013)