Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2880511
  • 博文数量: 599
  • 博客积分: 16398
  • 博客等级: 上将
  • 技术积分: 6875
  • 用 户 组: 普通用户
  • 注册时间: 2009-11-30 12:04
个人简介

WINDOWS下的程序员出身,偶尔也写一些linux平台下小程序, 后转行数据库行业,专注于ORACLE和DB2的运维和优化。 同时也是ios移动开发者。欢迎志同道合的朋友一起研究技术。 数据库技术交流群:58308065,23618606

文章分类

全部博文(599)

文章存档

2014年(12)

2013年(56)

2012年(199)

2011年(105)

2010年(128)

2009年(99)

分类: Oracle

2012-04-03 01:34:12

unit PING;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls, IdBaseComponent, IdComponent, IdRawBase, IdRawClient,
  IdIcmpClient;

type
  TForm1 = class(TForm)
    Button1: TButton;
    Edit1: TEdit;
    Label1: TLabel;
    Memo1: TMemo;
    IdIcmpClient1: TIdIcmpClient;
    procedure Button1Click(Sender: TObject);
    procedure IdIcmpClient1Reply(ASender: TComponent;
      const AReplyStatus: TReplyStatus);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
var
  i : Integer;
begin
  Memo1.Lines.Clear;
  IdIcmpClient1.Host:=   Edit1.Text;   //计算机的名称或IP地址
  IdIcmpClient1.ReceiveTimeout:=1000;   //最大超时时间
  Button1.Enabled   :=   false;  
  try
    for   i:=0   to   13   do
    begin
      IdIcmpClient1.Ping;
       Application.ProcessMessages   ;   //延时
    end;
   finally
     Button1.Enabled   :=   true;  
   end;

end;

procedure TForm1.IdIcmpClient1Reply(ASender: TComponent;
  const AReplyStatus: TReplyStatus);
var  
    sTime:   string;
  begin  
    //检测Ping的回复错误  
    if   (AReplyStatus.MsRoundTripTime   =   0   )   then  
        sTime   :=   '<1'  
    else  
        sTime   :=   '=';  
    //在列表框中显示Ping消息  
    Memo1.Lines.Add(Format('Reply   from   [%s]   :   Bytes=%d   time%s%d   ms   TTL=%d',
    [AReplyStatus.FromIpAddress,  
    AReplyStatus.BytesReceived,  
    sTime,  
    AReplyStatus.MsRoundTripTime,  
    AReplyStatus.TimeToLive]));
end;

end.

阅读(7019) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~