码迷,mamicode.com
首页 > Windows程序 > 详细

delphi 判断前网络连接状态

时间:2018-03-21 13:56:14      阅读:300      评论:0      收藏:0      [点我收藏+]

标签:creat   判断   blog   gpo   phi   mobile   icon   final   create   

function GetNetworkState: string; // 得到当前网络连接状态
var
 NS: TNetworkState;
begin
 NS := TNetworkState.Create;
 try
  if not NS.IsConnected then // 无网络
   result := ‘0‘
  else if NS.IsWifiConnected then // wifi
   result := ‘1‘
  else if NS.IsMobileConnected then // 移动数据
   result := ‘2‘;
 finally
   NS.Free;
 end;
end;

delphi 判断前网络连接状态

标签:creat   判断   blog   gpo   phi   mobile   icon   final   create   

原文地址:https://www.cnblogs.com/wcf-delphi/p/8616106.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!