Is there any way to open a website link when user cancel installation o开发者_Go百科r there is error during install ?
regards
Try using the following:
procedure CallPage;
var
ErrorCode: Integer;
begin
ShellExec(’open’, ‘http://www.yourdomain.com/xxxxxx’, ”, ”, SW_SHOWNORMAL, ewNoWait, ErrorCode);
end;
Where xxxxx is page you want to be called. You can even pass parameters when calling the page.
精彩评论