[Harbour] Problem width the connect method of tsmtp class

2008-04-16 Thread Sulyok Péter
Hy Developers! I use a harbour 0.99.3 Beta compiler under the winxp. If i like connect to an smtp server, than the connect method result error. If i try connect width an older harbour, than the connect is correct. I need to harbour 0.99.3 or later version, because i use an adordd modul, that the

RE: [Harbour] OrdSkipUnique of ADS 9

2008-04-16 Thread Massimo Belgrano
With ads if you have a program that access to v9 and v8 you must use client v8 ant can't use the new feature of v9 because you application is linked with v8 Also in harbour is statically linked and you must use #define ADS_REQUIRE_VERSION 8 So I suggest use conditional code with #if ADS_REQUIRE_VE

[Harbour] 2008-04-16 14:41 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-04-16 Thread Przemyslaw Czerpak
2008-04-16 14:41 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbclass.ch ! removed: MESSAGE IS used as synonym of: MESSAGE METHOD If someone was using the removed version then please update the code to MESSAGE ... METHOD ...

RE: [Harbour] 2008-04-16 14:41 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-04-16 Thread J. Lefebvre
Hi Przemek, About "MESSAGE IS " and to allow the same meaning as Class(y), should'nt it be so simple as translating it to "MESSAGE METHOD ". Doing this, mthName will act as msgName, resulting in the creation of an alternate method Name. Regards, JF, -Message d'origine- De : [EMAIL

RE: [Harbour] Problem width the connect method of tsmtp class

2008-04-16 Thread Massimo Belgrano
Can you post a sample so I try? Imo will be changed sequence of parameter in different version From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sulyok Péter Sent: Wednesday, April 16, 2008 10:21 AM To: harbour@harbour-project.org Subject: [Harbour] Problem width the connect method of

Re: [Harbour] 2008-04-16 14:41 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-04-16 Thread Szakáts Viktor
Hey Przemek, * harbour/include/hbdefs.h + added #include It should hide some warnings related to redefined integer size constants Viktor if it will not help for BCC58 warnings then you will have to add #include few lines below but please remember that older BC

Re: RE: [Harbour] 2008-04-16 14:41 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-04-16 Thread Przemyslaw Czerpak
On Wed, 16 Apr 2008, J. Lefebvre wrote: > Hi Przemek, > About "MESSAGE IS " and to allow the same meaning as > Class(y), > should'nt it be so simple as translating it to "MESSAGE METHOD > ". It was working in exactly such way and I disabled it because in Class(y) it has different meaning. M

RE: RE: [Harbour] 2008-04-16 14:41 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-04-16 Thread J. Lefebvre
OK, I understand and agree. Regards, JF, -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De la part de Przemyslaw Czerpak Envoyé : mercredi 16 avril 2008 16:42 À : Harbour Project Main Developer List. Objet : Re: RE: [Harbour] 2008-04-16 14:41 UTC+0200 Przemyslaw Cz

Re: [Harbour] 2008-04-16 14:41 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-04-16 Thread Przemyslaw Czerpak
On Wed, 16 Apr 2008, Szakáts Viktor wrote: Hi Viktor, > As per Andi's and your suggestion, I've included #if > __BORLANDC_ > 1410, Can you check the exact version from which BCC has stdint.h to use >= instead of > ? 1410 is 5.82 so such limit will work for BCC 5.83 and newer. Is it intentiona

Re: [Harbour] 2008-04-16 14:41 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-04-16 Thread Szakáts Viktor
On Wed, 16 Apr 2008, Szakáts Viktor wrote: Hi Viktor, As per Andi's and your suggestion, I've included #if __BORLANDC_ > 1410, Can you check the exact version from which BCC has stdint.h to use >= instead of > ? 1410 is 5.82 so such limit will work for BCC 5.83 and newer. Is it intentional?

[Harbour] New TBROWSE

2008-04-16 Thread Przemyslaw Czerpak
Hi All, I'm attaching updated TBrowse code. There are 2 minor TODO notes in the code but rest is addressed. I do not know about any problems with this code but maybe I missed sth. Please make tests. If you will find any problems or incompatibilities to Clipper then please inform me. If everything

Re: [Harbour] New TBROWSE

2008-04-16 Thread Szakáts Viktor
Hi Przemek, I did some tests using rto_tb.prg, pls. find the fixes applied to tbrowse.prg attached. Shortly: - ::freeze return value on assign made compatible when numeric, but out of range value was assigned. - ::colSep, ::headSep, ::footSep, ::skipBlock, ::goTopBlock, ::goBottomBlock SETGE

[Harbour] CHANGELOG: 2008-04-17 03:53 UTC+0100 Viktor Szakats (harbour.01 syenar hu)

2008-04-16 Thread Szakáts Viktor
2008-04-17 03:53 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * include/hbextern.ch * source/rtl/errorapi.c + Added ERRORINHAN() (and alias ERRORINHANDLER()) CA-Cl*pper compatible, undocumented function, guarded with HB_C52_UNDOC. Same as Harbour __ERRINHANDLER(). *