> Does the Abort method works immediately or is it better to destroy and > recreate the component ?
No need to destroy the component. But before doing something else, wait to receive the OnrequestDone which will be triggered by Abort (If memory serve me well). >> It is probably a good idea to wait a few seconds before retrying. > Using sleep or using WaitForSingleObject/WaitForMultipleObjects ? > In other words : may this be a blocking or non-blocking wait? Sleep is OK since your program is blocked from the outside. Using Sleep will of course completly froze your program so this may have a negative impact on the user if sleep time is too long. -- [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
