[Harbour] 2007-01-10 18:05 UTC+0800 Pritpal Bedi ([EMAIL PROTECTED])

2008-01-10 Thread Pritpal Bedi
2007-01-10 18:05 UTC+0800 Pritpal Bedi ([EMAIL PROTECTED]) * source/rtl/teditor.prg ! Fixed [ scrolls past ::naTextLen ] Pritpal Bedi, INDIA-USA -- View this message in context: http://www.nabble.com/2007-01-10-18%3A05-UTC%2B0800-Pritpal-Bedi-%28pritpal%40vouchcac.com%29-tp14748200p14748

[Harbour] 2007-01-10 17:50 UTC+0800 Pritpal Bedi ([EMAIL PROTECTED])

2008-01-10 Thread Pritpal Bedi
2007-01-10 17:50 UTC+0800 Pritpal Bedi ([EMAIL PROTECTED]) * source/rtl/memoedit.prg * source/rtl/teditor.prg + Implemented Clipper compatible missing parameters: nTextBuffRow nTextBuffColumn nWindowRow nWindowColumn Tested slightly but need deeper

Re: [Harbour] How to gzip a string?

2008-01-10 Thread Lorenzo Fiorini
On Jan 10, 2008 6:39 PM, Przemyslaw Czerpak <[EMAIL PROTECTED]> wrote: > Yes, and it should greater or equal then the size of decompressed data. > ... > HB_UNCOMPRESS( cZipped, HB_UNCOMPRESSLEN( cZipped ) ) > ??? Many thanks for the info. I agree with you, HB_UNCOMPRESSLEN( cZipped ) should

Re: [Harbour] 2007-11-30 20:25 UTC+0100 Marek Paliwoda (mpaliwoda at interia pl)

2008-01-10 Thread Pritpal Bedi
Przemek Przemyslaw Czerpak-2 wrote: > > The modifications are minimal. I did not have to change anything in the > code and only added THREAD keyword to static variable declarations. Rest > is done inside HVM. I'm attaching patch for current SVN with above > modifications if you are interested.

[Harbour] Re: Strange Ascan behavior

2008-01-10 Thread Alexander S.Kresin
On Thursday, January 10, 2008, 20:42 Przemyslaw Czerpak <[EMAIL PROTECTED]> wrote: >> What I don't understand - how two objects can be EXACTLY EQUAL and in >> the same time NOT simply EQUAL. PC> Ask Clipper authors why: PC> a:={}; ? a==a PC> shows .T. and: PC> a:={}; ? a=a PC> causes

[Harbour] Harbour Wince and xhgtk

2008-01-10 Thread giuseppem
I have compiled xhgtk with make_gtk-sh -hbce and i have the lib lib-hbce/libxhgtk.a . There is an example for test Gui on Wince with xhgtk. Thanks Giuseppe. -- View this message in context: http://www.nabble.com/Harbour-Wince-and-xhgtk-tp14740033p14740033.html Sent from the Harbour - Dev maili

Re: [Harbour] 2007-11-30 20:25 UTC+0100 Marek Paliwoda (mpaliwoda at interia pl)

2008-01-10 Thread Przemyslaw Czerpak
The first version was probably refused due to attachment size and I'm sending second one with smaller patch (without harbour.yy[ch] files) so bison is necessary to recreate them. On Wed, 09 Jan 2008, Mindaugas Kavaliauskas wrote: > >> * harbour/source/rtl/perfuncs.prg > >> * harbour/source/rtl/

Re: [Harbour] Re: Strange Ascan behavior

2008-01-10 Thread Przemyslaw Czerpak
On Thu, 10 Jan 2008, Alexander S.Kresin wrote: > PC> It's correct. ASCAN() uses EQUAL comparison not EXACTLY EQUAL comparison. > That's clear. > What I don't understand - how two objects can be EXACTLY EQUAL and in > the same time NOT simply EQUAL. Ask Clipper authors why: a:={}; ? a==a sho

Re: [Harbour] How to gzip a string?

2008-01-10 Thread Przemyslaw Czerpak
On Thu, 10 Jan 2008, Lorenzo Fiorini wrote: > Actually I don't need HB_UNCOMPRESS since that part is done by Firefox > I've simply to provide the compressed data but reading the code I have > seen that lit want the len or a buffer with len as second parameter. Yes, and it should greater or equal t

[Harbour] Re: Strange Ascan behavior

2008-01-10 Thread Alexander S.Kresin
On Thursday, January 10, 2008, 17:33 Przemyslaw Czerpak <[EMAIL PROTECTED]> wrote: PC> It's correct. ASCAN() uses EQUAL comparison not EXACTLY EQUAL comparison. That's clear. What I don't understand - how two objects can be EXACTLY EQUAL and in the same time NOT simply EQUAL. Regards, Alex

Re: [Harbour] Strange Ascan behavior

2008-01-10 Thread Szakáts Viktor
Or use: lOldExact := Set( _SET_EXACT, .T. ) n := AScan( array, var ) Set( _SET_EXACT, lOldExact ) Brgds, Viktor On 2008.01.10., at 15:33, Przemyslaw Czerpak wrote: On Thu, 10 Jan 2008, Alexander S.Kresin wrote: Hi All, this is a short code fragment, which gives results, strange for me ( or

Re: [Harbour] How to gzip a string?

2008-01-10 Thread Lorenzo Fiorini
On Jan 10, 2008 3:07 PM, Przemyslaw Czerpak <[EMAIL PROTECTED]> wrote: > You can use ZLIB wrapper I sent. Many thanks I found it. > Sooner or later we will have to add support for ZLIB in core code > ... > and decompressed. You do not have to explicitly call any compress > functions. Good news.

Re: [Harbour] Strange Ascan behavior

2008-01-10 Thread Przemyslaw Czerpak
On Thu, 10 Jan 2008, Alexander S.Kresin wrote: > Hi All, > this is a short code fragment, which gives results, strange for me ( or > I worked too much today ? :) ) [...] >Aadd( HTest():aObjects, o ) >? Ascan(HTest():aObjects,o)// 0 () >? Ascan(HTest():aObjects,{|o1|o1==

Re: [Harbour] How to gzip a string?

2008-01-10 Thread Lorenzo Fiorini
On Jan 10, 2008 2:27 PM, Mindaugas Kavaliauskas <[EMAIL PROTECTED]> wrote: > I'm going to commit wrappers to zlib and minizip after release freeze. > You can use Przemyslaw's code send in the following email: Many thanks I found it. best regards, Lorenzo _

Re: [Harbour] How to gzip a string?

2008-01-10 Thread Przemyslaw Czerpak
On Thu, 10 Jan 2008, Lorenzo Fiorini wrote: > I don't need hbziparch but simply send deflate/gzip data to a web browser. > Is the HB_COMPRESS/HB_UNCOMPRESS in xhb the only solution? > I would like to find a "non-xhb" solution. You can use ZLIB wrapper I sent. Sooner or later we will have to add su

[Harbour] Strange Ascan behavior

2008-01-10 Thread Alexander S.Kresin
Hi All, this is a short code fragment, which gives results, strange for me ( or I worked too much today ? :) ) #include "hbclass.ch" function main Local o o := HTest():New() Aadd( HTest():aObjects, o ) ? Ascan(HTest():aObjects,o)// 0 () ? Ascan(HTest():aObjects,{|

Re: [Harbour] How to gzip a string?

2008-01-10 Thread Szakáts Viktor
Hi Mindaugas, Since I believe you will commit these wrappers to the contrib area (since these might have 3rd party lib dependencies, unless we include these sources in core), I think it's fine to release them anytime, even now. Brgds, Viktor On 2008.01.10., at 14:27, Mindaugas Kavaliauskas wrot

Re: [Harbour] How to gzip a string?

2008-01-10 Thread Mindaugas Kavaliauskas
Lorenzo Fiorini wrote: I don't need hbziparch but simply send deflate/gzip data to a web browser. Is the HB_COMPRESS/HB_UNCOMPRESS in xhb the only solution? I would like to find a "non-xhb" solution. Hi, I'm going to commit wrappers to zlib and minizip after release freeze. You can use Pr

[Harbour] There is a Gui Lib for harbour and Pocket PC.

2008-01-10 Thread giuseppem
I have tried xharbour and wince in console mode and work fine. There is a gui lib? it's possible use Hwgui and how? Thanks Giuseppe. -- View this message in context: http://www.nabble.com/There-is-a-Gui-Lib-for-harbour-and-Pocket-PC.-tp14728873p14728873.html Sent from the Harbour - Dev mailing

Re: [Harbour] Store via Item API

2008-01-10 Thread Przemyslaw Czerpak
On Wed, 09 Jan 2008, Mindaugas Kavaliauskas wrote: > Hello, > I need to store item to parameter passed by reference. I found there is > no API for this. My current code is: >if( hb_param( 2, HB_IT_BYREF ) ) >{ > ... > hb_itemMoveToRef( hb_stackItemFromBase( 2 ), pItem ); >}

Re: [Harbour] [ClipperCompatibility] ASCAN is Case Sensitive

2008-01-10 Thread maxsoft
Hi Jacek, thank you for your reply. I've seen the Clipper 5.2 book and I've seen that example you talked about. I'll check the Clipper Application and I'll test if on Clipper 5.2 there a kind of bug. Thank you again bye max Hello maxsoft, Thursday, January 10, 2008, 9:17:36 AM, you wrote:

Re: [Harbour] [ClipperCompatibility] ASCAN is Case Sensitive

2008-01-10 Thread Jacek Kubica
Hello maxsoft, Thursday, January 10, 2008, 9:17:36 AM, you wrote: m> ASCAN Clipper function is not Case Sensitive. m> Harbour ASCAN function is case sensitive. As far I remember ASCAN is case sensivite in Clipper too from CA-Clipper 5.3 NG: This example demonstrates scanning a three-ele

[Harbour] [ClipperCompatibility] ASCAN is Case Sensitive

2008-01-10 Thread maxsoft
Hi all, ASCAN Clipper function is not Case Sensitive. Harbour ASCAN function is case sensitive. Exist a compiler directive to make string NO CASE SENSITIVE? thank you very much maxsoft ___ Harbour mailing list Harbour@harbour-project.org http://lists.har