Re: [twsocket] Removing namespace in pascal hpp

2006-05-30 Thread Fastream Technologies
I just upgraded my BCB6 project and I think you redefined it for Win32 AS WELL. Please check out the code I uploaded. See my messages. Regards, SZ - Original Message - From: "Francois PIETTE" <[EMAIL PROTECTED]> To: Sent: Tuesday, May 30, 2006 10:17 PM Subject: Re: [twsocket] Removing

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Delphi
Hello, i've checked the compileroptions, but the options are for me the same (D5 <-> D7). After change the wsocket.pas it works .. :-) i don't know, what is was. thanks richard bAllSent: Boolean; {$IFDEF COMPILER4_UP} FReadCount : Int64; {$ELSE} FR

Re: [twsocket] Help file for FTPClient

2006-05-30 Thread Wilfried Mestdagh
Hello Peter, > being the final component I choose for my communications program Good I hope you succeed ! If you have any questions you can fire this off in this mailing list. Lots of people are volonteer to standby... > At least I plan to do so. Keep in touch :) --- Rgds, Wilfried [TeamICS] h

Re: [twsocket] Removing namespace in pascal hpp

2006-05-30 Thread Francois PIETTE
You should see why WM_QUIT is redefined for BCB while it is conditionally compiled when symbol CLR is defined. Symbol CLR is defined when compiling with a .NET compiler (that is a .NEt project). When you created your BCB project, are you sure you created a Win32 project ? Didn't you define your

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Francois PIETTE
As Angus said, it is probably a matter of compiler option generating code to detect - or not - the overflow. Check the settings for your D5 and D6. -- Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html -- [EMAIL PROTECTED] http://www.overbyte.be - Original Message -

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Delphi
in delphi 5 it works fine, but in delphi 7 i get the error. is this ´not the same code? (stream.pas)?? richard "Angus Robertson - Magenta Systems Ltd" <[EMAIL PROTECTED]> schrieb: > > > Very strange that error never came up when I added 64-bit support > > > to the FTP client 6 month ago, I know

Re: [twsocket] Help file for FTPClient

2006-05-30 Thread Borosnyay Péter
Hello Wilfried, I dl'ed ICS today morning so I'm not in the position to help yet ... But I will experiment with it this week, it has a good chance of being the final component I choose for my communications program in our GPS navigation system at the local transport company of the second biggest

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Angus Robertson - Magenta Systems Ltd
> > Very strange that error never came up when I added 64-bit support > > to the FTP client 6 month ago, I know I successfully tested DVD > > image files larger than 2 gigs. > > Is it possible that you tested the upload only? I would have testing both upload and download, but I was also testing

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Arno Garrels
Angus Robertson - Magenta Systems Ltd wrote: >> If it is this line "FReadCount := FReadCount + Result;" it's >> clear. FReadCount is just an integer. Instead it should be >> defined as Int64 in newer compilers. > > Very strange that error never came up when I added 64-bit support to > the FTP clie

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Angus Robertson - Magenta Systems Ltd
> If it is this line "FReadCount := FReadCount + Result;" it's > clear. FReadCount is just an integer. Instead it should be > defined as Int64 in newer compilers. Very strange that error never came up when I added 64-bit support to the FTP client 6 month ago, I know I successfully tested DVD ima

Re: [twsocket] Help file for FTPClient

2006-05-30 Thread Francois Piette
>I couldn't find help files for FTPClient (I mean the descriptions of properties, > events and methods) neither in the package, nor on overbyte.be and in the faq. > Help is probably not available yet. > Am I right ? Almost. See the source code (component and sample program). You'll find valuab

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Arno Garrels
Sorry, exchange {$END} by {$ENDIF}, the beer was too good yesterday 8-( bAllSent: Boolean; {$IFDEF COMPILER4_UP} FReadCount : Int64; {$ELSE} FReadCount : LongInt; {$ENDIF} FPaused : Boolean; And ~ Line 988: property AllSent : Boo

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Arno Garrels
Delphi wrote: > Hello Arno Garrels > > i get the exception EIntOverflow >> in Line 3842 in ..\vcl32\wsocket.pas If it is this line "FReadCount := FReadCount + Result;" it's clear. FReadCount is just an integer. Instead it should be defined as Int64 in newer compilers. If CBuilder 4 supports Int6

Re: [twsocket] Help file for FTPClient

2006-05-30 Thread Wilfried Mestdagh
Hello Peter, Correct. There is already some framework on http://wiki.overbyte.be but all still need to be done. You are of course welcome to help :) And also this is the best learning tool ever exists :) --- Rgds, Wilfried [TeamICS] http://www.overbyte.be/eng/overbyte/teamics.html http://www.mest

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Delphi
Hello Arno Garrels i get the exception EIntOverflow > in Line 3842 in ..\vcl32\wsocket.pas > Richard Arno Garrels wrote:: > Richard (Delphi) wrote: > > >> After 2GB the client hang (overflow integer) >> why doesn't work the in64-version of the functions in >> D7 ? >> > > Please po

[twsocket] Help file for FTPClient

2006-05-30 Thread Borosnyay Péter
Hello everybody, I couldn't find help files for FTPClient (I mean the descriptions of properties, events and methods) neither in the package, nor on overbyte.be and in the faq. Help is probably not available yet. Am I right ? Cheers, Peter -- To unsubscribe or change your settings for TWS

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Arno Garrels
Richard (Delphi) wrote: > After 2GB the client hang (overflow integer) > why doesn't work the in64-version of the functions in > D7 ? Please post the line number where the exception is being raised. If you don't run the application in the IDE you can compile a debug-version using MadExcept http:

[twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Delphi
Hello, i have installed the ics width Delphi7 i would download with the ftp-client a large file (6GByte). After 2GB the client hang (overflow integer) why doesn't work the in64-version of the functions in D7 ? in Delphi 5 the ftp-client works with get fine a download 6 GByte. Best regards Rich