本文整理自网络,侵删。
ver.txt内容:1.0
GetNewVersion(http://www.delphitop.com/ver.txt);
function GetNewVersion(url: string): string;var lHTTP: TIdHTTP;begin
Result := ''; lHTTP := TIdHTTP.create; try try Result := lHTTP.Get(url); Result := Result; except // not responding end; finally lHTTP.Free; end;
end;
相关阅读 >>
Delphi xe 使用asqlite操作sqlite数据库乱码
Delphi 把修改好的cookies重新赋值给webbrowser1 doc
Delphi 检查程序是否在(vm,vpc等)虚拟机运行 Delphi(测试可用)
更多相关阅读请进入《Delphi》频道 >>