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 namespace in pascal hpp


: 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
: yourself the symbol CLR ?
:
: --
: Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html
: --
: [EMAIL PROTECTED]
: http://www.overbyte.be
:
:
:
: - Original Message - 
: From: "Fastream Technologies" <[EMAIL PROTECTED]>
: To: "Francois Piette" <[EMAIL PROTECTED]>
: Sent: Tuesday, May 30, 2006 8:12 PM
: Subject: Fw: Removing namespace in pascal hpp
:
:
: > FYI.
: >
: > - Original Message - 
: > From: "Rudy Velthuis [TeamB]" <[EMAIL PROTECTED]>
: > Newsgroups: borland.public.cppbuilder.vcl.components.using
: > Sent: Tuesday, May 30, 2006 8:10 PM
: > Subject: Re: Removing namespace in pascal hpp
: >
: >
: > : At 15:59:39, 30.05.2006, SubZero wrote:
: > :
: > : > It's not my design and it is Francois' idea/will to keep the design 
as
: > : > it is (with little modification for BCB compliance).
: > :
: > : I think you misunderstand.
: > :
: > : The CLR symbol is set by the Delphi for .NET compiler, not by 
Francois.
: > : It should not be defined when you are NOT compilingt for .NET, or,
: > : reversely, if it is set, something is very wrong.
: > :
: > : I am not telling you to change anything. But the code I have seen (I
: > : downloaded ICS v6 beta) is meant for both Win32 and for .NET. Some 
parts
: > : are only meant to compile for .NET. The .NET part has some definitions
: > : and declarations (like WM_QUIT, etc.), which are not needed, nor
: > supposed
: > : to be compiled for Delphi for Win32.
: > :
: > : So if you see these items in the .hpp file anyway, something is not
: > : correct. You might also be using other code actually meant for .NET 
and
: > : not for Win32. Such code might for instance rely on the presence of a
: > : garbage collector, and if used in Win32, it may leak memory.
: > :
: > : -- 
: > : Rudy Velthuis [TeamB]http://rvelthuis.de/
: > :
: > : "The only way to get rid of a temptation is to yield to it."
: > :- Oscar Wilde (1854-1900)
:
: -- 
: 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 

-- 
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


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}
FReadCount  : LongInt;
{$ENDIF}
FPaused : Boolean; 

And ~ Line 988:

property AllSent   : Booleanread  bAllSent;
{$IFDEF COMPILER4_UP}
property ReadCount : Int64  read  FReadCount;
{$ELSE}
property ReadCount : LongIntread  FReadCount;
{$ENDIF}
property RcvdCount : LongIntread  GetRcvdCount; 


Arno Garrels wrote:

> > 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 Int64 (D4 supports it for sure) it could
> > be changed in WSocket.pas line 786 like this:
> > 
> > bAllSent: Boolean;
> > {$IFDEF COMPILER4_UP}
> > FReadCount  : Int64;
> > {$ELSE}
> > FReadCount  : LongInt;
> > {$END}
> > FPaused : Boolean;
> > 
> > And ~ Line 988:
> > 
> > property AllSent   : Booleanread  bAllSent;
> > {$IFDEF COMPILER4_UP}
> > property ReadCount : Int64  read  FReadCount;
> > {$ELSE}
> > property ReadCount : LongIntread  FReadCount;
> > {$END}
> > property RcvdCount : LongIntread 
> > GetRcvdCount; 
> > 
> > Please try these UNTESTED! changes and post the result, I'm currently
> > not sure whether further changes are required.
> > Compile your project by Option "Build All" once after the changes.
> > 
> > ---
> > Arno Garrels [TeamICS]
> > http://www.overbyte.be/eng/overbyte/teamics.html
> > 
> > 
> > 
>   
>> >> 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 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://www.madshi.net/madExceptDescription.htm
>>> >>> 
>>> >>> ---
>>> >>> Arno Garrels [TeamICS]
>>> >>> http://www.overbyte.be/eng/overbyte/teamics.html
>>> >>> 
>>> >>> 
>>> >>> 
>>>   
>> >> exception EIntOverflow
>> >> 
>> 
>>> >>> in Line 3842 in ..\vcl32\wsocket.pas
>>>   
-- To unsubscribe or change your settings for TWSocket mailing list 
please goto http://www.elists.org/mailman/listinfo/twsocket





Francois PIETTE schrieb:


> 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 - 
> From: "Richard (Delphi)" <[EMAIL PROTECTED]>
> To: "ICS support mailing" 
> Sent: Tuesday, May 30, 2006 6:33 PM
> Subject: Re: [twsocket] FTPClient problem w. large files in D7
>
>
>   
>> 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 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
>>> resumed transfers as well, and deliberately interrupted some tests (by
>>> pulling the LAN cable) to ensure resume worked, that might have reduced
>>> some actual sessions below 2 gig.
>>>
>>> I might also have had the compiler ignore overflow set, since FReadCount
>>> is not really used.
>>>
>>> Angus
>>>   
>>
>>
>> -- 
>> 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 
>> 
>
>   

-- 
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


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]
http://www.overbyte.be/eng/overbyte/teamics.html
http://www.mestdagh.biz

Tuesday, May 30, 2006, 18:14, Borosnyay Péter wrote:

> 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 city in Hungary.
> If I succeed and get my money I will either donate or do something useful for 
> you.
> At least I plan to do so.

> Bests,
> Peter

> On Tue, 30 May 2006 15:18:06 +0200, Wilfried Mestdagh <[EMAIL PROTECTED]> 
> wrote:

>> 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.mestdagh.biz
>>
>> Tuesday, May 30, 2006, 14:13, Borosnyay Péter wrote:
>>
>>> 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
>>
>>



> -- 
> FIGYELEM !  Ennek a levélnek a végén NINCS REKLÁM !!!
> észrevetted ?


-- 
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


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 
yourself the symbol CLR ?

--
Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html
--
[EMAIL PROTECTED]
http://www.overbyte.be



- Original Message - 
From: "Fastream Technologies" <[EMAIL PROTECTED]>
To: "Francois Piette" <[EMAIL PROTECTED]>
Sent: Tuesday, May 30, 2006 8:12 PM
Subject: Fw: Removing namespace in pascal hpp


> FYI.
>
> - Original Message - 
> From: "Rudy Velthuis [TeamB]" <[EMAIL PROTECTED]>
> Newsgroups: borland.public.cppbuilder.vcl.components.using
> Sent: Tuesday, May 30, 2006 8:10 PM
> Subject: Re: Removing namespace in pascal hpp
>
>
> : At 15:59:39, 30.05.2006, SubZero wrote:
> :
> : > It's not my design and it is Francois' idea/will to keep the design as
> : > it is (with little modification for BCB compliance).
> :
> : I think you misunderstand.
> :
> : The CLR symbol is set by the Delphi for .NET compiler, not by Francois.
> : It should not be defined when you are NOT compilingt for .NET, or,
> : reversely, if it is set, something is very wrong.
> :
> : I am not telling you to change anything. But the code I have seen (I
> : downloaded ICS v6 beta) is meant for both Win32 and for .NET. Some parts
> : are only meant to compile for .NET. The .NET part has some definitions
> : and declarations (like WM_QUIT, etc.), which are not needed, nor 
> supposed
> : to be compiled for Delphi for Win32.
> :
> : So if you see these items in the .hpp file anyway, something is not
> : correct. You might also be using other code actually meant for .NET and
> : not for Win32. Such code might for instance rely on the presence of a
> : garbage collector, and if used in Win32, it may leak memory.
> :
> : -- 
> : Rudy Velthuis [TeamB]http://rvelthuis.de/
> :
> : "The only way to get rid of a temptation is to yield to it."
> :- Oscar Wilde (1854-1900) 

-- 
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


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 - 
From: "Richard (Delphi)" <[EMAIL PROTECTED]>
To: "ICS support mailing" 
Sent: Tuesday, May 30, 2006 6:33 PM
Subject: Re: [twsocket] FTPClient problem w. large files in D7


> 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 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
>> resumed transfers as well, and deliberately interrupted some tests (by
>> pulling the LAN cable) to ensure resume worked, that might have reduced
>> some actual sessions below 2 gig.
>>
>> I might also have had the compiler ignore overflow set, since FReadCount
>> is not really used.
>>
>> Angus
>
>
>
>
> -- 
> 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 

-- 
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


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 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 
> resumed transfers as well, and deliberately interrupted some tests (by 
> pulling the LAN cable) to ensure resume worked, that might have reduced 
> some actual sessions below 2 gig.  
> 
> I might also have had the compiler ignore overflow set, since FReadCount 
> is not really used. 
> 
> Angus




-- 
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


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 city in Hungary.
If I succeed and get my money I will either donate or do something useful for 
you.
At least I plan to do so.

Bests,
Peter

On Tue, 30 May 2006 15:18:06 +0200, Wilfried Mestdagh <[EMAIL PROTECTED]> wrote:

> 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.mestdagh.biz
>
> Tuesday, May 30, 2006, 14:13, Borosnyay Péter wrote:
>
>> 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
>
>



-- 
FIGYELEM !  Ennek a levélnek a végén NINCS REKLÁM !!!
észrevetted ?

-- 
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

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 
resumed transfers as well, and deliberately interrupted some tests (by 
pulling the LAN cable) to ensure resume worked, that might have reduced 
some actual sessions below 2 gig.  

I might also have had the compiler ignore overflow set, since FReadCount 
is not really used. 

Angus
-- 
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


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 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?

Arno

> 
> Angus
-- 
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


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 image files 
larger than 2 gigs.  

Angus
-- 
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


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
valuable help in the comments and of course you'll find all properties,
methods and events. I always use significant names so you should not have
too much difficulties.
--
Contribute to the SSL Effort.
Visit http://www.overbyte.be/eng/ssl.html
--
[EMAIL PROTECTED]
Author of ICS (Internet Component Suite, freeware)
Author of MidWare (Multi-tier framework, freeware)
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


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   : Booleanread  bAllSent;
{$IFDEF COMPILER4_UP}
property ReadCount : Int64  read  FReadCount;
{$ELSE}
property ReadCount : LongIntread  FReadCount;
{$ENDIF}
property RcvdCount : LongIntread  GetRcvdCount; 


Arno Garrels wrote:
> 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 Int64 (D4 supports it for sure) it could
> be changed in WSocket.pas line 786 like this:
> 
> bAllSent: Boolean;
> {$IFDEF COMPILER4_UP}
> FReadCount  : Int64;
> {$ELSE}
> FReadCount  : LongInt;
> {$END}
> FPaused : Boolean;
> 
> And ~ Line 988:
> 
> property AllSent   : Booleanread  bAllSent;
> {$IFDEF COMPILER4_UP}
> property ReadCount : Int64  read  FReadCount;
> {$ELSE}
> property ReadCount : LongIntread  FReadCount;
> {$END}
> property RcvdCount : LongIntread 
> GetRcvdCount; 
> 
> Please try these UNTESTED! changes and post the result, I'm currently
> not sure whether further changes are required.
> Compile your project by Option "Build All" once after the changes.
> 
> ---
> Arno Garrels [TeamICS]
> http://www.overbyte.be/eng/overbyte/teamics.html
> 
> 
> 
>> 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 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://www.madshi.net/madExceptDescription.htm
>>> 
>>> ---
>>> Arno Garrels [TeamICS]
>>> http://www.overbyte.be/eng/overbyte/teamics.html
>>> 
>>> 
>>> 
>> exception EIntOverflow
>> 
>>> in Line 3842 in ..\vcl32\wsocket.pas
-- 
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


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 Int64 (D4 supports it for sure) it could
be changed in WSocket.pas line 786 like this:

bAllSent: Boolean;
{$IFDEF COMPILER4_UP}
FReadCount  : Int64;
{$ELSE}
FReadCount  : LongInt;
{$END}
FPaused : Boolean; 

And ~ Line 988:

property AllSent   : Booleanread  bAllSent;
{$IFDEF COMPILER4_UP}
property ReadCount : Int64  read  FReadCount;
{$ELSE}
property ReadCount : LongIntread  FReadCount;
{$END}
property RcvdCount : LongIntread  GetRcvdCount; 

Please try these UNTESTED! changes and post the result, I'm currently not
sure whether further changes are required.
Compile your project by Option "Build All" once after the changes.

---
Arno Garrels [TeamICS]
http://www.overbyte.be/eng/overbyte/teamics.html



> 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 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://www.madshi.net/madExceptDescription.htm
>> 
>> ---
>> Arno Garrels [TeamICS]
>> http://www.overbyte.be/eng/overbyte/teamics.html
>> 
>> 
>> 
> exception EIntOverflow
> 
>> in Line 3842 in ..\vcl32\wsocket.pas
-- 
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


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.mestdagh.biz

Tuesday, May 30, 2006, 14:13, Borosnyay Péter wrote:

> 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 TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


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 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://www.madshi.net/madExceptDescription.htm
>
> ---
> Arno Garrels [TeamICS]
> http://www.overbyte.be/eng/overbyte/teamics.html
>
>
>   
exception EIntOverflow  

> in Line 3842 in ..\vcl32\wsocket.pas  
>
>
>
>   

-- 
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


[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 TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


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://www.madshi.net/madExceptDescription.htm

---
Arno Garrels [TeamICS]
http://www.overbyte.be/eng/overbyte/teamics.html


  



-- 
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


[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

Richard



-- 
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