Re: [twsocket] [OT] Delphi 2007 for WIN32 Purchase Hint

2007-03-20 Thread Yates, Paul
Thank you for the warning - you just saved me making that mistake. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Darin McGee Sent: 19 March 2007 17:08 To: ICS support mailing Subject: [twsocket] [OT] Delphi 2007 for WIN32 Purchase Hint If you purchase

Re: [twsocket] [OT] Delphi 2007 for WIN32 Purchase Hint

2007-03-20 Thread Jeff Hamblin
If you purchase Delphi 2007 for WIN32 via D/L like I did, you may want to seriously consider purchasing the media kit too because the D/L version provides no files to install from, it simply performs a Install Anywhere from the web leaving you only the Install Anywhere installer file.

[twsocket] Problem with THttpCli

2007-03-20 Thread Fastream Technologies
Hello, Let's say in a function you have THttpCli passed as pointer. I can check whether it is -Connected or not. But how can one see if it is processing or not? I mean, I need to learn if it is working or not. I hope you get what I mean. I believe the State != httpReady is not always reliable

[twsocket] Fw: Problem with THttpCli

2007-03-20 Thread Fastream Technologies
Correcting, NOT setready but some other messages sent. I need to be sure that it is no longer processing. Because if it is still pending I want to abort it. But if it is a normal waiting keep-alive socket then I want to pass it to the pool as connected. Regards, SZ - Original Message

Re: [twsocket] Problem with THttpCli

2007-03-20 Thread Francois PIETTE
You can encapsulate ICS component into your own component (That this derive your component from ICS component) and manage the flag you need by trapping everything you need. -- [EMAIL PROTECTED] The author for the freeware multi-tier middleware MidWare The author of the freeware Internet

Re: [twsocket] Question regarding Delphi 2007

2007-03-20 Thread Francois PIETTE
D2007 uses 36MB (working set) at startup, with ICS-V6 project group loaded. When rebuilding all projects, it grows to 81MB. Speaking virtual memory space, the numbers are 210MB/235MB. -- Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html -- [EMAIL PROTECTED]

[twsocket] D2007 purchase hint

2007-03-20 Thread Markus Humm
Hello, besides to ordering the media kit one can backup the downloaded files of the installer. They're stroed in some folder under the profiles! Greetings Markus -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket

[twsocket] Architectural question II

2007-03-20 Thread Markus Humm
Hello, regarding my question from last weekend only a part was answered so far. The thing is now: if several TTimers get fired at the same time and all of them want to write into a shared TStringList-Type buffer (okay, it's in a wrapper class), how to make sure only one at a time gets acces and

Re: [twsocket] Architectural question II

2007-03-20 Thread Bevan Edwards
Why not have a single thread responsible for doing that and then just have the TTimers use PostThreadMessage to request the update? Markus Humm wrote: Hello, regarding my question from last weekend only a part was answered so far. The thing is now: if several TTimers get fired at the same

Re: [twsocket] Architectural question II

2007-03-20 Thread david . lyon
The correct way is to use a semaphore. These do all the management on exclusive resources. There are lots of classes out there to download that implement. Semephores are built-in to the operating system. Markus Humm wrote: Hello, regarding my question from last weekend only a part was