> Just one little question... > When i have a TList of busy HTTPCli'ents how do i > know which one should i > remove on OnRequestDone event?
You have the sender argument in OnRequestDone. It's the Http component that sent the event. You can cast it to THttpCli and do whatever you like. btw: This is basic Delphi programming. The sender argument of any event always refers to the component source of the event. You always need it when the same handler is used for many components. -- [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