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

 找回密碼
 注冊

QQ登錄

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

樓主: Fred
打印 上一主題 下一主題

電腦高手必備

41#
網(wǎng)絡(luò )天 發(fā)表于 2006-11-16 18:15:31 | 只看該作者 來(lái)自 中國安徽合肥
能加錢(qián)嗎
42#
daotong 發(fā)表于 2006-11-16 21:10:56 | 只看該作者 來(lái)自 中國江蘇宿遷
看看再說(shuō),不知道是什么。
43#
cn123456 發(fā)表于 2006-11-18 07:40:33 | 只看該作者 來(lái)自 中國遼寧沈陽(yáng)
是什么,寫(xiě)一下介紹
44#
天天新 發(fā)表于 2006-11-19 18:00:34 | 只看該作者 來(lái)自 中國湖南株洲
okok
45#
yanbinsdfg 發(fā)表于 2006-11-19 20:27:41 | 只看該作者 來(lái)自 中國四川自貢
想看看
46#
姜華 發(fā)表于 2006-11-19 21:08:59 | 只看該作者 來(lái)自 中國河南新鄉

現在什么都要錢(qián)!

就不能免費共享一下?
47#
sbahko 發(fā)表于 2006-11-22 17:43:45 | 只看該作者 來(lái)自 中國河南商丘
我不分不夠  不能下了
48#
阿瘋 發(fā)表于 2006-11-22 19:41:17 | 只看該作者 來(lái)自 中國福建莆田
kanxia
49#
飛云天 發(fā)表于 2006-11-23 17:18:31 | 只看該作者 來(lái)自 中國廣東
下幾個(gè)才回一個(gè)
50#
飛云天 發(fā)表于 2006-11-23 17:18:40 | 只看該作者 來(lái)自 中國廣東
下幾個(gè)才回一個(gè)我
51#
玉米 發(fā)表于 2006-12-2 00:45:27 | 只看該作者 來(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.
52#
瀟楊克 發(fā)表于 2006-12-2 19:13:11 | 只看該作者 來(lái)自 中國云南昆明
看看 謝了.
53#
黑冰 發(fā)表于 2006-12-4 00:30:06 | 只看該作者 來(lái)自 中國黑龍江牡丹江
好東西要頂
54#
hbdnweixiupc 發(fā)表于 2006-12-6 20:50:12 | 只看該作者 來(lái)自 中國遼寧沈陽(yáng)
下下看。下下看。下下看。
55#
瘋狗 發(fā)表于 2006-12-8 11:38:09 | 只看該作者 來(lái)自 中國江蘇蘇州
下下看,再頂一下!
56#
風(fēng)無(wú)根人不定 發(fā)表于 2006-12-8 11:38:58 | 只看該作者 來(lái)自 中國廣東廣州
真的,假的,

看這就知。。

thanks
57#
大馬 發(fā)表于 2006-12-11 19:06:41 | 只看該作者 來(lái)自 中國河南焦作
能成高手嗎?
58#
修理學(xué)徒 發(fā)表于 2006-12-19 21:51:40 | 只看該作者 來(lái)自 中國浙江溫州
下來(lái)看看~~`
59#
苦地瓜 發(fā)表于 2007-1-12 20:25:28 | 只看該作者 來(lái)自 中國湖北襄陽(yáng)
誘惑來(lái)臨
60#
張信 發(fā)表于 2007-1-18 21:26:12 | 只看該作者 來(lái)自 中國廣東

看不到啊!!

您需要登錄后才可以回帖 登錄 | 注冊

本版積分規則

快速回復 返回頂部 返回列表
广宗县| 金川县| 精河县| 石首市| 永胜县| 晋城| 台安县| 灵寿县| 讷河市| 湾仔区| 鄯善县| 余庆县| 济南市| 健康| 漯河市| 论坛| 宣城市| 西乡县| 乌兰察布市| 惠水县| 台东县| 邯郸县| 乌海市| 建水县| 铜川市| 廊坊市| 保靖县| 安化县| 齐河县| 土默特左旗| 澎湖县| 昆明市| 响水县| 麟游县| 海安县| 龙州县| 乐业县| 县级市| 饶阳县| 和顺县| 博客|