大家来看看这个程序!问一些函数的问题!(10分)

R

redwood

Unregistered / Unconfirmed
GUEST, unregistred user!
问题是下面程序中的LIP函数是什么东东?是怎么用的?


unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Menus, StdCtrls, ExtCtrls, 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;
oldIp: string;

implementation

{$R *.dfm}

//下面就是关键所在了
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^ <> nil do begin
result:=StrPas(inet_ntoa(pptr^^));
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

oldIp:=LIP;
BorderStyle:=bsNone;
Alphablend:=true

Alphablendvalue:=100;
FormStyle:=fsStayOnTop

end;

procedure TForm1.Timer1Timer(Sender: TObject);
begin
Label1.Caption :='IP:'+LIP;
if oldip <> LIP then
Showmessage('IP地址已经改变,请检查!');
end;

procedure TForm1.Label1MouseMove(Sender: TObject
Shift: TShiftState
X,
Y: Integer);
begin
if ssleft in shift then //移动窗体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.
 
LIP是获取本机IP地址吧。
 
这…………
我知道它是做什么用的,看程序就知道了,主要是想知道它是怎么用的?
 
Label1.Caption :='IP:'+LIP;
 
什么怎么用的?总不会说调用函数你不知道?还是把你的意图说明白一些
 
获取本机ip地址返回
 
我真是越来越菜了……
请各位解释一下LIP函数定义过程中的那些语句

拜托了!!
 
或者用Tnmftp控件,delphi自带的,他的localip属性
 
多人接受答案了。
 
顶部