如何终止tnmhttp的连接?(20分)

  • 主题发起人 主题发起人 emildy
  • 开始时间 开始时间
E

emildy

Unregistered / Unconfirmed
GUEST, unregistred user!
我是这样写的,
procedure con(strURL:String);
begin
tnmhttp.disconnect;
try
tnmhttp.get(strURL);
except
application.messagebox('Error','',1);
end;
end;
希望先终止连接然后连接新的URL,
但是,如果我没有间隙的连续调用这个procedure,那messagebox就会不停的跳出来,
会是我没有终止原来的get过程吗?
请告诉我怎样才能完全终止tnmhttp的连接?
 
tnmhttp.disconnect的时候, tnmhttp.get就被中断,而且发出exception
 
接受答案了.
 
后退
顶部