当用户取消安装或安装过程中出错时,有没有办法打开网站链接?
问候
答案 0 :(得分:1)
尝试使用以下内容:
procedure CallPage;
var
ErrorCode: Integer;
begin
ShellExec(’open’, ‘http://www.yourdomain.com/xxxxxx’, ”, ”, SW_SHOWNORMAL, ewNoWait, ErrorCode);
end;
xxxxx是您希望被调用的页面。您甚至可以在调用页面时传递参数。