> thanks for clarification. It doesn't matter that the one thread which > communicates via TWSocket doesn't reside in the same DLL as the TWSocket > created?
A thread is not located in a DLL or in an exe. A thread is independent on where the code is ! Putting a method into a TThread class doesn't mean it is executed by the thread ! A thread is a context of execution and has nothing to do with where the code is defined. The only thing almost sure is that TThread.Execute is executed in the thread's context. Any code elseware, including code defined as a TThread's method, may or may not be executed in the thread context. -- Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html -- [EMAIL PROTECTED] http://www.overbyte.be -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be
