在XP/2000下用什么方法能够检测是否已经在网上?(拨号方式)(50分)

  • 主题发起人 tsedlinux
  • 开始时间
T

tsedlinux

Unregistered / Unconfirmed
GUEST, unregistred user!
在XP/2000下用什么方法能够检测是否已经在网上?(拨号方式)
 
检测谁是否在网上?自己还是别人?
 
当然是检测本机了
 
procedure TForm1.Button1Click(Sender: TObject);
begin
if GetSystemMetrics(SM_NETWORK) AND $01 = $01 then
ShowMessage('Machine is attached to network') else
ShowMessage('Machine is not attached to network');
end;
 
多人接受答案了。
 
顶部