小问题有分拿的!(50分)

  • 主题发起人 主题发起人 happy_boy
  • 开始时间 开始时间
H

happy_boy

Unregistered / Unconfirmed
GUEST, unregistred user!
用delphi如何得到本机的IP?
请发E给我好吗?
divey@yeah.net

谢谢!
 
安装WinSock TCP ActiveX控件则:
Memo1.lines.Add(TCP1.LocalIp);

 
http://www.gislab.ecnu.edu.cn/delphibbs/DispQ.asp?LID=266262

uses Winsock;

function GetIP:String;
VAR
ch: Array [1..32] OF Char;
i: Integer;
S: String;
WSData: TWSAData;
MyHost: PHostEnt;
begin
if WSAstartup(2,WSData) <> 0 then Halt(2);
try
if GetHostName(@ch[1],32) <> 0 then Halt(3);
except halt(3);
end;
MyHost := GetHostByName(@ch[1]);
if MyHost = nil then
Halt(4)
else
begin
for i := 0 to 3 do
begin
S := S + Inttostr(Ord(MyHost.H_Addr^));
if i < 3 then
S := S + '.';
end;
end;
Result:=s;
end;
 
多人接受答案了。
 
后退
顶部