Newsgroups : Borland : borland.public.delphi.internet.winsock : 2007 Dec : Re: idfTP and Socks problem
| Subject: | Re: idfTP and Socks problem |
| Posted by: | "Richard" (ritchie8..@yahoo.com) |
| Date: | Sun, 9 Dec 2007 17:22:20 |
"Richard" <ritchie872@yahoo.com> wrote in message
news:4759e400$1@newsgroups.borland.com...
>> try
> FHandlerStack:= TIdIOHandlerStack.Create(FTP);
> FSocks:= TIdSocksInfo.Create(FTP);
Hmm , investiagting a bit more, it seems like, putting the idSockInfo in a
form doers the trick. OR creating it at run time with a form as an owner:
FSocks:= TIdSocksInfo.Create(Form3);
This works, but creating it with Nil as an owner or some other non-visual
component does nothing. Is this component dependient of some message loop or
something? Strange... that would do it practically unusable...