标题:[求助]编译通不过
取消只看楼主
potato182
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2006-8-17
 问题点数:0 回复次数:0 
[求助]编译通不过

procedure TForm1.gethostbynameClick(Sender: TObject);
var
cr:string;
err:integer;
host:hostent;
op:pchar;
begin
host:=gethostbyname(pchar(edit1.Text));
except
if host=NIL then
begin
edit2.Text:='host does not exit';
exit;
end;
cr:=copy('host.h_addr',4,0 );
edit3.Text:=format('%d.%d.%d.%d',[ord(cr[1]),ord(cr[2]),ord(cr[3]),ord(cr[4])]);
edit2.Text:=host.h_name;


end;
其中host:=gethostbyname(pchar(edit1.Text));
这句编译通不过,大家来看看出了什么问题了,谢谢啊.

搜索更多相关主题的帖子: 编译 
2006-08-17 17:12



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-84554-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.316295 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved