Re: [twsocket] [OT] OverByte Home

2005-07-30 Thread Arno Garrels
Hi Francois, Just for fun I installed Google Earth, since it's too hot to do anything usefull today :( Nice playground isn't it? I've attached the location were I have my apartment in Berlin. Cheers, Arno Garrels >>> Well, something went wrong with the attached document. >>> I've uploaded it a

Re: [twsocket] [OT] OverByte Home

2005-07-30 Thread Francois PIETTE
>>Well, something went wrong with the attached document. >>I've uploaded it at: http://www.overbyte.be/arch/OverByteHome.kmz >>(This is a kind of hyperlink for Google Earth). > > This doesn't work for me. There where two problems. I corrected both problems and even added a link in the page "author

Re: [twsocket] Using TPop3Cli

2005-07-30 Thread Francois PIETTE
> Pop3Cli->Connect(); > WaitForSingleObject(hEvent,Pop3TimeOut); > What I doing wrong? WaitForSingleObject is a blocking function that prevent any event from being triggered (you can see that your application is frozen: you cna't click on a button or resize it). So ICS component - which are eve

Re: [twsocket] Using TPop3Cli

2005-07-30 Thread Wilfried Mestdagh
Hello Äìèòðèé, You have to do next action in OnRequestDone. TPop3Cli is asynchronous doing the work in background while your application can go on with other things to do. Just do a switch (RqType) in the requestdone for the next action. No need for all that sequentinal progrmming :) --- Rgds, Wi

[twsocket] Using TPop3Cli

2005-07-30 Thread Дмитрий Андреев
Hello, I try using TPop3Cli. Code like this don`t working: void MyProc() { ... Pop3Cli->Connect(); WaitForSingleObject(hEvent,Pop3TimeOut); Pop3Cli->User(); WaitForSingleObject(hEvent,Pop3TimeOut); Pop3Cli->Pass(); WaitForSingleObject(hEvent,Pop3TimeOut); ... } void __fastcall TForm1::Pop3Cli1Re

Re: [twsocket] FTP Client - Size() Function

2005-07-30 Thread Angus Robertson - Magenta Systems Ltd
> Is there a "bullet-proof" way to get a remote File Size using the > TFTPClient component? > > FEAT Command - numerous extensions have been made to the FTP protocol > over > the past few years, although support of these new commands is very > sporadic. > RFC2389 describes the FEAT command, whi

Re: [twsocket] FTP Client - Size() Function

2005-07-30 Thread Francois PIETTE
Ise Size method. -- [EMAIL PROTECTED] http://www.overbyte.be - Original Message - From: "Keith Willis" <[EMAIL PROTECTED]> To: Sent: Saturday, July 30, 2005 11:44 AM Subject: [twsocket] FTP Client - Size() Function > Dear All, > > Is there a "bullet-proof" way to get a remote File Size

[twsocket] FTP Client - Size() Function

2005-07-30 Thread Keith Willis
Dear All, Is there a "bullet-proof" way to get a remote File Size using the TFTPClient component? I noted the following documentation on the FEAT command in the "FTPCli.pas" unit... FEAT Command - numerous extensions have been made to the FTP protocol over the past few years, although support o