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的连接?
procedure con(strURL:String);
begin
tnmhttp.disconnect;
try
tnmhttp.get(strURL);
except
application.messagebox('Error','',1);
end;
end;
希望先终止连接然后连接新的URL,
但是,如果我没有间隙的连续调用这个procedure,那messagebox就会不停的跳出来,
会是我没有终止原来的get过程吗?
请告诉我怎样才能完全终止tnmhttp的连接?