本文整理自网络,侵删。
单元文件:ShellApi
OpenUrlWithDefBrowser('http://www.baidu.com');
procedure OpenUrlWithDefBrowser(url: string);
begin
try ShellExecute(0, 'open', PChar(url), nil, nil, SW_SHOWNORMAL);
except
on E: Exception do begin
Showmessage('ERROR in upddate progress: ' + E.Message + ' Please, try manual download ' + url + ' ');
end;
end;
end;
相关阅读 >>
Delphi winapi: setwindowtext - 设置窗口标题
Delphi xe 取得 app 自己的版本号 (狠跨 4 个平台)
Delphi fmx 获取系统版本 android ios通用
更多相关阅读请进入《Delphi》频道 >>