Re: [Harbour] 2008-08-01 03:06 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-08-01 Thread Szakáts Viktor
Hi Przemek, Isn't an update missing for harbour.yy* files? Brgds, Viktor On 2008.08.01., at 3:06, Przemyslaw Czerpak wrote: 2008-08-01 03:06 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbpp.h * harbour/include/hbexprb.c * harbour/source/pp/ppcore.c *

[Harbour] All __PLATFORM__* uppercase?

2008-08-01 Thread Lorenzo Fiorini
I've just found that by mistake, I've replace __PLATFORM__Linux with __PLATFORM__Unix. What about having all the __PLATFORM_* upper case before 1.0 release? best regards, Lorenzo ___ Harbour mailing list Harbour@harbour-project.org

Re: [SPAM] [Harbour] Ocassional SET ORDER TO failure in RDDADS - xHarbour

2008-08-01 Thread Przemyslaw Czerpak
On Thu, 31 Jul 2008, Pritpal Bedi wrote: Hi Pritpal, This is an xHarbour compiled ( as of Jun 2007 CVS ) application, a very large one. RDD = RDDADS Here is a code snippet: select verify set order to 2 seek substr(cCustId,2) // Generates RT Error and stats are alias() == verify

Re: [Harbour] All __PLATFORM__* uppercase?

2008-08-01 Thread Szakáts Viktor
Hi, If we're at __PLATFORM_* #defines, I'd rather opt to make everything uniformly uppercase, as this is the common rule used for every other #define's in Harbour and Clipper. We may add mixed-case xhb compatibility #defines via hbcompat.ch. Brgds, Viktor On 2008.08.01., at 10:46, Lorenzo

[Harbour] 2008-08-01 11:01 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-08-01 Thread Przemyslaw Czerpak
2008-08-01 11:01 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/source/compiler/harbour.yyc * updated for recent harbour.y modifications - thanks to Viktor for remainder best regards Przemek ___ Harbour mailing list

Re: [Harbour] All __PLATFORM__* uppercase?

2008-08-01 Thread Przemyslaw Czerpak
On Fri, 01 Aug 2008, Szakáts Viktor wrote: I've just found that by mistake, I've replace __PLATFORM__Linux with __PLATFORM__Unix. What about having all the __PLATFORM_* upper case before 1.0 release? If we're at __PLATFORM_* #defines, I'd rather opt to make everything uniformly uppercase, as

Re: [Harbour] All __PLATFORM__* uppercase?

2008-08-01 Thread Lorenzo Fiorini
On Fri, Aug 1, 2008 at 10:57 AM, Szakáts Viktor [EMAIL PROTECTED] wrote: If we're at __PLATFORM_* #defines, I'd rather opt to make everything uniformly uppercase, as this is the common rule used for every other #define's in Harbour and Clipper. Yes, I was referring to the __PLATFORM__*

Re: [Harbour] 2008-08-01 14:44 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

2008-08-01 Thread Lorenzo Fiorini
On Fri, Aug 1, 2008 at 3:06 PM, Szakáts Viktor [EMAIL PROTECTED] wrote: * source/pp/ppcore.c * doc/whatsnew.txt ! __PLATFORM__* macros now all #defined in full uppercase. Many thanks. best regards, Lorenzo ___ Harbour mailing list

Re: Re: [SPAM] [Harbour] Ocassional SET ORDER TO failure in RDDADS - xHarbour

2008-08-01 Thread [EMAIL PROTECTED]
Could you guys please try this with Harbour and report results? Viktor, I´ll try this weekend. Regards, Toninho. ___ Yahoo! Mail - Sempre a melhor opção para você! Experimente já e veja as novidades.

Re: [Harbour] [SPAM] Ocassional SET ORDER TO failure in RDDADS - xHarbour

2008-08-01 Thread Szakáts Viktor
Hi Pritpal, Just some generic information about recent rddads update: The RDD part of the lib (ads1.c) got some very light updates only, so it's pretty easy to overview them and look for any suspect changes. Brgds, Viktor On 2008.08.01., at 18:05, Pritpal Bedi wrote: Przemek what is the

Re: Re: [Harbour] [SPAM] Ocassional SET ORDER TO failure in RDDADS - xHarbour

2008-08-01 Thread [EMAIL PROTECTED]
Just some generic information about recent rddads update: The RDD part of the lib (ads1.c) got some very light updates only, so it's pretty easy to overview them and look for any suspect changes. I agree. I do a complete file compare with old/new rddads versions without any suspicious code found;

[Harbour] HB_ATokens() equivqlent accepting delimiter more than one charcater

2008-08-01 Thread Pritpal Bedi
Hello I am looking for a function equivalent to HB_ATokens( cStr, cDelimiter ) where cDelimiter is more than one character. For example: HB_ATokensEx( cString, '|~|' ) Please forgive me if it already exists. Regards Pritpal Bedi, INDIA-USA -- View this message in context:

[Harbour] Mouse not work with ACHOICE()

2008-08-01 Thread Guillermo Varona Silupú
This Code work fine in clipper with the mouse: #include inkey.ch// Key definitions FUNCTION MAIN LOCAL aOpc := {Opc. 1,Opc. 2,Opc. 3}, nOpc SET( _SET_EVENTMASK, INKEY_ALL ) cls nOpc := ACHOICE(1,1,10,20,aOpc) ? nOpc RETURN NIL In harbour not work the mouse. Best Regards. GVS