Re: [twsocket] ICSV6 package _InToStr unknown procedure

2010-02-25 Thread Arno Garrels
Dod wrote:

 Anyway, since you use Delphi 7 why don't you work with ICS v7,
 v7 is better than v6.
 
 Good  question :-) ICS V6 was the last one I used and since I have not
 seen any comparison sheet between v6v7 I never took the time to test
 it. But if you can tell me in a few words what are V7 improvements...

It gets all bug-fixes and is the main development target.
New components, all v5 demos ported and new added, UTF-8
support even with Delphi 7 in TSmtpCli, TMimedec and the 
FTP-components.  

Is this enough ;)

--
Arno Garrels
--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] ICSV6 package _InToStr unknown procedure

2010-02-25 Thread Dod
Hello,

Yep ;-)

AG Dod wrote:

 Anyway, since you use Delphi 7 why don't you work with ICS v7,
 v7 is better than v6.
 
 Good  question :-) ICS V6 was the last one I used and since I have not
 seen any comparison sheet between v6v7 I never took the time to test
 it. But if you can tell me in a few words what are V7 improvements...

AG It gets all bug-fixes and is the main development target.
AG New components, all v5 demos ported and new added, UTF-8
AG support even with Delphi 7 in TSmtpCli, TMimedec and the 
AG FTP-components.  

AG Is this enough ;)

AG --
AG Arno Garrels
AG --
AG To unsubscribe or change your settings for TWSocket mailing list
AG please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
AG Visit our website at http://www.overbyte.be



--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


[twsocket] ICSV6 package _InToStr unknown procedure

2010-02-24 Thread Dod
Hi,

I  am  trying to install ICSV6 on D7 but I get error on _IntToStr in
OverbyteICSHttpSrv.pas  (6.08)  source,  is this a simple misspell for
IntToStr  because I cannot find any _IntToStr function anywhere else
?

constructor THttpServer.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
CreateSocket;
{$IFDEF NO_ADV_MT}
FWSocketServer.Name := ClassName + '_SrvSocket' + _IntToStr(WSocketGCount);
{$ELSE}
FWSocketServer.Name := ClassName + '_SrvSocket' + 
_IntToStr(SafeWSocketGCount);
{$ENDIF}
FClientClass   := THttpConnection;
FOptions   := [];



--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] ICSV6 package _InToStr unknown procedure

2010-02-24 Thread Arno Garrels
Dod wrote:
 Hi,
 
 I  am  trying to install ICSV6 on D7 but I get error on _IntToStr in
 OverbyteICSHttpSrv.pas  (6.08)  source,  is this a simple misspell for
 IntToStr  because I cannot find any _IntToStr function anywhere else
 ?
 
 constructor THttpServer.Create(AOwner: TComponent);
 begin
inherited Create(AOwner);
CreateSocket;
 {$IFDEF NO_ADV_MT}
FWSocketServer.Name := ClassName + '_SrvSocket' +
 _IntToStr(WSocketGCount); {$ELSE}
FWSocketServer.Name := ClassName + '_SrvSocket' +
 _IntToStr(SafeWSocketGCount); {$ENDIF}
FClientClass   := THttpConnection;
FOptions   := [];

This has been fixed November 2009: 
http://wiki.overbyte.be/arch/change-log-icsv6.xml
 
--
Arno Garrels
--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] ICSV6 package _InToStr unknown procedure

2010-02-24 Thread Dod
Hello,

OK, actual link to OverbyteIcsV6.zip contains this bug so any new user
that download ICS cannot install it without fixing it first.

regards.

AG Dod wrote:
 Hi,
 
 I  am  trying to install ICSV6 on D7 but I get error on _IntToStr in
 OverbyteICSHttpSrv.pas  (6.08)  source,  is this a simple misspell for
 IntToStr  because I cannot find any _IntToStr function anywhere else
 ?
 
 constructor THttpServer.Create(AOwner: TComponent);
 begin
inherited Create(AOwner);
CreateSocket;
 {$IFDEF NO_ADV_MT}
FWSocketServer.Name := ClassName + '_SrvSocket' +
 _IntToStr(WSocketGCount); {$ELSE}
FWSocketServer.Name := ClassName + '_SrvSocket' +
 _IntToStr(SafeWSocketGCount); {$ENDIF}
FClientClass   := THttpConnection;
FOptions   := [];

AG This has been fixed November 2009: 
AG http://wiki.overbyte.be/arch/change-log-icsv6.xml
 
AG --
AG Arno Garrels
AG --
AG To unsubscribe or change your settings for TWSocket mailing list
AG please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
AG Visit our website at http://www.overbyte.be



--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] ICSV6 package _InToStr unknown procedure

2010-02-24 Thread Arno Garrels
Dod wrote:
 
 OK, actual link to OverbyteIcsV6.zip contains this bug so any new user
 that download ICS cannot install it without fixing it first.

Just tested, the fix is included. Of course you have to download
from the wiki-link:
http://wiki.overbyte.be/wiki/index.php/FAQ#How_to_get_ICS 

Anyway, since you use Delphi 7 why don't you work with ICS v7,
v7 is better than v6.

--
Arno Garrels

--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] ICSV6 package _InToStr unknown procedure

2010-02-24 Thread Dod
Hello,

AG Anyway, since you use Delphi 7 why don't you work with ICS v7,
AG v7 is better than v6.

Good  question :-) ICS V6 was the last one I used and since I have not
seen any comparison sheet between v6v7 I never took the time to test
it. But if you can tell me in a few words what are V7 improvements...

regards.

AG Dod wrote:
 
 OK, actual link to OverbyteIcsV6.zip contains this bug so any new user
 that download ICS cannot install it without fixing it first.

AG Just tested, the fix is included. Of course you have to download
AG from the wiki-link:
AG http://wiki.overbyte.be/wiki/index.php/FAQ#How_to_get_ICS 

AG Anyway, since you use Delphi 7 why don't you work with ICS v7,
AG v7 is better than v6.

AG --
AG Arno Garrels

AG --
AG To unsubscribe or change your settings for TWSocket mailing list
AG please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
AG Visit our website at http://www.overbyte.be



--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be