金年会 金字招牌诚信至上,金年会 金字招牌诚信至上,金年会 金字招牌诚信至上,金年会 金字招牌诚信至上

 找回密碼
 注冊

QQ登錄

只需一步,快速開(kāi)始

查看: 3213|回復: 14
打印 上一主題 下一主題

網(wǎng)絡(luò )工程師講義

跳轉到指定樓層
1#
honylb 發(fā)表于 2006-8-18 14:05:26 | 只看該作者 回帖獎勵 |倒序瀏覽 |閱讀模式 來(lái)自 中國廣東深圳

馬上注冊,結交更多好友,享用更多功能。

您需要 登錄 才可以下載或查看,沒(méi)有帳號?注冊

x
網(wǎng)絡(luò )工程師講義

網(wǎng)絡(luò )工程師講義.rar

295.69 KB, 下載次數: 43, 下載積分: 金幣 -5 金幣, 下載 1

網(wǎng)絡(luò )工程師講義

2#
wanggong 發(fā)表于 2006-10-25 10:30:57 | 只看該作者 來(lái)自 中國遼寧鞍山
不錯,挺好用的.
3#
河洛王 發(fā)表于 2006-11-15 13:08:02 | 只看該作者 來(lái)自 中國河南安陽(yáng)
xiankankan
4#
玉米 發(fā)表于 2006-12-2 00:47:47 | 只看該作者 來(lái)自 中國江蘇南通

unit Unit1;

unit Unit1;
interface
uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, Menus, StdCtrls, ExtCtrls, Winsock; //首先要添加winsock
type
  TForm1 = class(TForm)
    Timer1: TTimer;
    Label1: TLabel;
    PopupMenu1: TPopupMenu;
    Exit: TMenuItem;
    procedure FormCreate(Sender: TObject);
    procedure Timer1Timer(Sender: TObject);
    procedure Label1MouseMove(Sender: TObject; Shift: TShiftState; X,
      Y: Integer);
    procedure Label1MouseDown(Sender: TObject; Button: TMouseButton;
      Shift: TShiftState; X, Y: Integer);
    procedure ExitClick(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;
  oldx,oldy: integer;//添加變量,用做移動(dòng)窗體
  oldIp: string;
implementation
{$R *.dfm}
//下面就是關(guān)鍵所在了
function LIP : string;
type
  TaPInAddr = array [0..10] of PInAddr;
  PaPInAddr = ^TaPInAddr;
var
  phe  : PHostEnt;
  pptr : PaPInAddr;
  Buffer : array [0..63] of char;
  I    : Integer;
  GInitData      : TWSADATA;
begin
  WSAStartup($101, GInitData);
  Result := '';
  GetHostName(Buffer, SizeOf(Buffer));
  phe :=GetHostByName(buffer);
  if phe = nil then Exit;
  pptr := PaPInAddr(Phe^.h_addr_list);
  I := 0;
  while pptr^[I] <> nil do begin
    result:=StrPas(inet_ntoa(pptr^[I]^));
    Inc(I);
  end;
  WSACleanup;
end;

procedure TForm1.FormCreate(Sender: TObject);
begin
  with Label1 do  //定義屬性
  begin
    Caption:='';
    Font.Charset:=ANSI_CHARSET;
    Font.Name:='Arial';
    Font.Size:=10;
    Font.Color:=clRed;
    Align:=alClient;
    PopupMenu:=popupmenu1;
  end;

  Timer1.Interval:=1000;
  Timer1.Enabled:=true;
  Label1.Caption:='IP:'+LIP; //賦值,把Ip賦值給label1
  oldIp:=LIP;
  BorderStyle:=bsNone;
  Alphablend:=true; //呵呵,這個(gè)就是讓窗口變透明的辦法了
  Alphablendvalue:=100;
  FormStyle:=fsStayOnTop; //讓窗體總在最前面
end;

procedure TForm1.Timer1Timer(Sender: TObject);
begin
  Label1.Caption :='IP:'+LIP;
  if oldip <> LIP then
    Showmessage('IP地址已經(jīng)改變,請檢查!');//提醒用戶(hù)
end;

procedure TForm1.Label1MouseMove(Sender: TObject; Shift: TShiftState; X,
  Y: Integer);
begin
  if ssleft in shift then  //移動(dòng)窗體Form1
  begin
     Form1.Left:=Form1.Left+x-oldx;
     Form1.Top:=Form1.top+y-oldy;
  end;
end;

procedure TForm1.Label1MouseDown(Sender: TObject; Button: TMouseButton;
  Shift: TShiftState; X, Y: Integer);
begin
  oldx:=x;
  oldy:=y;
end;

procedure TForm1.ExitClick(Sender: TObject);
begin
  Close;
end;
end.
5#
瀟楊克 發(fā)表于 2006-12-2 19:09:43 | 只看該作者 來(lái)自 中國云南昆明
thank you
6#
黑冰 發(fā)表于 2006-12-4 00:30:46 | 只看該作者 來(lái)自 中國黑龍江牡丹江
好東西要頂
7#
瘋狗 發(fā)表于 2006-12-8 12:07:15 | 只看該作者 來(lái)自 中國江蘇蘇州
頂一下再說(shuō)!
8#
劉宇 發(fā)表于 2006-12-19 10:47:07 | 只看該作者 來(lái)自 中國河北唐山
9#
海上日 發(fā)表于 2006-12-28 16:08:47 | 只看該作者 來(lái)自 中國遼寧盤(pán)錦
十分感謝
頭像被屏蔽
10#
銀狐 發(fā)表于 2006-12-29 21:21:53 | 只看該作者 來(lái)自 中國福建泉州
提示: 作者被禁止或刪除 內容自動(dòng)屏蔽
11#
維而不修 發(fā)表于 2006-12-30 10:49:33 | 只看該作者 來(lái)自 中國湖南衡陽(yáng)
12#
fanaiqing 發(fā)表于 2007-4-13 16:16:08 | 只看該作者 來(lái)自 中國江西宜春
頭像被屏蔽
13#
351958HuangLin 發(fā)表于 2007-6-1 19:20:12 | 只看該作者 來(lái)自 中國四川成都
提示: 作者被禁止或刪除 內容自動(dòng)屏蔽
14#
JimSu 發(fā)表于 2007-6-7 15:19:22 | 只看該作者 來(lái)自 中國北京

講義

好東西,來(lái)一份,謝謝斑竹!
15#
sbvu 發(fā)表于 2007-8-15 22:58:33 | 只看該作者 來(lái)自 中國山東煙臺
工程師用的啊,要看看
您需要登錄后才可以回帖 登錄 | 注冊

本版積分規則

快速回復 返回頂部 返回列表
南郑县| 中阳县| 伊春市| 平武县| 托里县| 新绛县| 平顺县| 唐海县| 墨玉县| 壤塘县| 孟州市| 新干县| 隆尧县| 苍梧县| 高碑店市| 望城县| 泾川县| 睢宁县| 汝南县| 兴文县| 加查县| 达日县| 华池县| 马龙县| 晋宁县| 抚宁县| 德州市| 绥江县| 宜春市| 定兴县| 确山县| 裕民县| 松江区| 灵山县| 嘉祥县| 凤城市| 太康县| 西昌市| 武鸣县| 嵊州市| 昌吉市|