怖客-致力于对网络技术的研究!

delphi远控编写的动态获取IP技术实现

自行添加内容

***************************************************************

by:lxsky

怖客:http://www.bkhack.com

***************************************************************

怖客为你提供过程函数,delphi的:
function getip(url:string):string;
var
idhttp:tidhttp;
begin
try
idhttp:=tidhttp.create(nil);
result:=idhttp.get(url);
idhttp.free;
except
result:='error';
end;
end;
procedure tform1.formcreate(sender:tobject);
begin
urltxt:='http://www.bkhack.com/down.txt';
ipname:=geturl(urltext);
if ipname='error' then
exit;
edit1.text:=ipname;
end;

 

自行添加内容
标签:delphi远控编写黑客编程
分类:编程教程| 发布:lxsky| 查看: | 发表时间:2011-12-23
原创文章如转载,请注明:转载自怖客,delphi教程,socket编程,vc 教程,电脑技术培训,网络安全 http://www.bkhack.com/
本文链接:http://www.bkhack.com/biancheng/delphiYuanKongBianXieDeDongTaiHuoQuIPJiShuShiXian.html

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

自行添加内容