John Barrat wrote: > I am using Delphi 2006 and XP Pro. > > I have built an app using the TClientSocket component in non-blocking > mode. > > To support non-blocking, the component creates a thread first time it > is opened, however, it does not seem to release this thread when it > is closed. > > > Can anyone advise on how to get the component to release this thread > or do I have to abandon the non-blocking approach and set it up in a > thread in blocking mode. If that is the case what is the point of > even supporting non-blocking in the component.
This probably is the thread the system creates internally for non-blocking sockets, very normal, it should terminate when your application exits. Arno Garrels _______________________________________________ Delphi mailing list -> [email protected] http://www.elists.org/mailman/listinfo/delphi

