Re: [Harbour] 2008-09-22 19:32 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-09-22 Thread Lorenzo Fiorini
On Tue, Sep 23, 2008 at 12:01 AM, Przemyslaw Czerpak <[EMAIL PROTECTED]> wrote: > You can keep it and still use the function to generate unique > bag names as before. It will work but the order bag name set by > you will be used only inside Harbour for tag/bag selection. ... > in example above you

Re: [Harbour] Re: MSVS 2008: error with new alloc

2008-09-22 Thread Przemyslaw Czerpak
On Tue, 23 Sep 2008, Szak�ts Viktor wrote: Hi Viktor, > Pls find attached some speedtst/memtst outputs. > Looks like dlalloc is well suited for MSVC with > a significant speedup in ST mode, and mostly > better results in MT mode. > Tested with MSVS2008 SP1, XPPro SP3, Intel 865 + P4HT 2.6, 3GB RA

Re: [Harbour] 2008-09-21 20:29 UTC-0800 Pritpal Bedi ([EMAIL PROTECTED])

2008-09-22 Thread Przemyslaw Czerpak
On Tue, 23 Sep 2008, Szak�ts Viktor wrote: Hi, >> hb_vmPushSymbol( hb_itemGetSymbol( pSymTest ) ); >> does not work >> hb_vmPushSymbol( hb_dynsymSymbol( pSymTest ) ); >> works. > Hm, this seems like a different subject, I'm not > really sure what is the difference, but I don't > remember changing

RE: RE: RE: RE: RE: [Harbour] can load always a large number oflibrary?

2008-09-22 Thread Massimo Belgrano
Sorry for my confusion but i have at least one million of question in my heads The biggest problem is that I can't understand what is "mt mode" and what is "st mode" Can I made any application (mt/st) in either mode in different way? (for example -tWN) I have undestrand That a mt application is m

Re: [Harbour] 2008-09-21 20:29 UTC-0800 Pritpal Bedi ([EMAIL PROTECTED])

2008-09-22 Thread Szakáts Viktor
Hi Pritpal, Hello Viktor with HB_RETWI( __DlgProc ) of course. Works. Thanks. Do you want to commit this? (with the things below) But: hb_vmPushSymbol( hb_itemGetSymbol( pSymTest ) ); does not work hb_vmPushSymbol( hb_dynsymSymbol( pSymTest ) ); works. Hm, this seems like a differ

Re: RE: RE: RE: RE: [Harbour] can load always a large number of library?

2008-09-22 Thread Przemyslaw Czerpak
On Tue, 23 Sep 2008, Massimo Belgrano wrote: Hi Massimo, > I receive error Object Destructor Failure: Reference to freed block > WIN Harbour Terminal: Windows native console > Windows Vista 6.0.6001 Service Pack 1 > Harbour 1.1.0dev (Rev. 9468) > Borland C++ 5.5.1 (32 bit) > DS avail=913956KB OS

Re: RE: RE: RE: RE: [Harbour] can load always a large number of library?

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Massimo Belgrano wrote: > If I build with HB_BUILD_ST=No Must link BCC cw32mt library instead/additive > of cw32 also in follow Program? In each program. It forces only MT mode without ST one. best regards, Przemek ___ Harbour mail

Re: RE: RE: RE: RE: [Harbour] can load always a large number of library?

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Massimo Belgrano wrote: Hi Massimo, > Ok I made: > set C_USR=-DHB_FM_DL_ALLOC -DHB_FM_STATISTICS_OFF -tWM -OS -Ov -Oi -Oc -Q > HB_BUILD_ST compile harbour in ST or MT mode w > what can be done with an harbour compiled in ST or MT mode? > So I have compiled in st mode and now

Re: [Harbour] Re: SIGFPE during build of hbtest

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, David Arturo Macias Corona wrote: Hi, > I think is due to local environment > Harbour does not use bison but for xHarbour was hard to find the right one. To be precise. Harbour uses bison but it's necessary only when you want to modify some grammar rules yourself in harbour

Re: [Harbour] Re: MSVS 2008: error with new alloc

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Szak�ts Viktor wrote: Hi Viktor, > Many thanks, that solved the problem. > Shouldn't we make USE_DL_PREFIX the default > for all compilers/platforms, to avoid such > possible problems, and also to make this matter > unified across all our builds? In fact it's a little bit le

RE: RE: RE: RE: [Harbour] can load always a large number of library?

2008-09-22 Thread Massimo Belgrano
I receive error Object Destructor Failure: Reference to freed block WIN Harbour Terminal: Windows native console Windows Vista 6.0.6001 Service Pack 1 Harbour 1.1.0dev (Rev. 9468) Borland C++ 5.5.1 (32 bit) DS avail=913956KB OS avail=2061524KB EMM avail=0KB MemStat:Off MT:On max Error BASE/1301

Re: [Harbour] 2008-09-22 19:32 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Lorenzo Fiorini wrote: > If I've understood well if the bag name is "automatic" I need to give > a unique tag name. As you can see today I use the same tag name > "CURSOR" since I'm sure I create different bags. You can keep it and still use the function to generate unique bag

RE: RE: RE: RE: [Harbour] can load always a large number of library?

2008-09-22 Thread Massimo Belgrano
If I build with HB_BUILD_ST=No Must link BCC cw32mt library instead/additive of cw32 also in follow Program? function main ? HB_GTVERSION(), HB_GTVERSION(1) ? VERSION() ? hb_compiler() ? hb_buildInfo() wait "max" return #include "hbmemory.ch" function hb_buildInfo() return "DS avail="

Re: [Harbour] 2008-09-21 20:29 UTC-0800 Pritpal Bedi ([EMAIL PROTECTED])

2008-09-22 Thread Pritpal Bedi
Hello Viktor >with HB_RETWI( __DlgProc ) of course. Works. But: hb_vmPushSymbol( hb_itemGetSymbol( pSymTest ) ); does not work hb_vmPushSymbol( hb_dynsymSymbol( pSymTest ) ); works. Regards Pritpal Bedi -- View this message in context: http://www.nabble.com/2008-09-21-20%3A29-UTC-0800-Prit

Re: [Harbour] 2008-09-21 20:29 UTC-0800 Pritpal Bedi ([EMAIL PROTECTED])

2008-09-22 Thread Pritpal Bedi
Hello Viktor >with HB_RETWI( __DlgProc ) of course. Works. But: hb_vmPushSymbol( hb_itemGetSymbol( pSymTest ) ); does not work hb_vmPushSymbol( hb_dynsymSymbol( pSymTest ) ); works. Regards Pritpal Bedi -- View this message in context: http://www.nabble.com/2008-09-21-20%3A29-UTC-0800-Prit

Re: [Harbour] 2008-09-22 19:32 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-09-22 Thread Lorenzo Fiorini
On Mon, Sep 22, 2008 at 10:24 PM, Przemyslaw Czerpak <[EMAIL PROTECTED]> wrote: > Then use TEMPORARY and instead of ordbagClear() use ordDestroy() > to kill given tag when it's not longer necessary. > ... > directory. Be sure that you have enough space in it. If not > then use TMPDIR envvar (or ot

RE: RE: RE: RE: [Harbour] can load always a large number of library?

2008-09-22 Thread Massimo Belgrano
Ok I made: set C_USR=-DHB_FM_DL_ALLOC -DHB_FM_STATISTICS_OFF -tWM -OS -Ov -Oi -Oc -Q HB_BUILD_ST compile harbour in ST or MT mode w what can be done with an harbour compiled in ST or MT mode? So I have compiled in st mode and now I can't run sample in tests\mt like mttest07 So if I WANT compile

Re: [Harbour] Re: MSVS 2008: error with new alloc

2008-09-22 Thread Szakáts Viktor
Hi Przemek, Many thanks, that solved the problem. Shouldn't we make USE_DL_PREFIX the default for all compilers/platforms, to avoid such possible problems, and also to make this matter unified across all our builds? Brgds, Viktor On 2008.09.22., at 21:17, Przemyslaw Czerpak wrote: On Mon, 22

[Harbour] Re: SIGFPE during build of hbtest

2008-09-22 Thread David Arturo Macias Corona
Maurilio, Przemek: I'm trying to buil harbour on OS/2 with GCC, I'm getting this: Killed by SIGFPE pid=0x62a5 ppid=0x628a tid=0x0001 slot=0x00e3 pri=0x0200 mc=0x0001 E:\REPOSITORY\HARBOUR-SVN\SOURCE\MAIN\OS2\GCC\HARBOUR.EXE LIBC063 0:0005547a Is there something already known here I see

Re: [Harbour] 2008-09-22 19:32 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Lorenzo Fiorini wrote: Hi Lorenzo, > BTW what do you think it's the better way to get unique file name in Harbour? It depends on context. For temporary files you can use HB_FTEMPCREATE() function. > > If you are using it for temporary indexes then I suggest to use > > TEMPO

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

2008-09-22 Thread Przemyslaw Czerpak
2008-09-22 22:08 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/source/vm/thread.c ! fixed GPF when hb_threadSelf() was executed from thread without allocated ID object (f.e. main thread) best regards Przemek ___ Harbour maili

Re: [Harbour] 2008-09-22 20:40 UTC+0200 Przemyslaw Czerpak(druzus/at/priv.onet.pl)

2008-09-22 Thread Enrico Maria Giordano
-Messaggio Originale- Da: "Przemyslaw Czerpak" <[EMAIL PROTECTED]> A: Data invio: lunedì 22 settembre 2008 20.40 Oggetto: [Harbour] 2008-09-22 20:40 UTC+0200 Przemyslaw Czerpak(druzus/at/priv.onet.pl) 2008-09-22 20:40 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour

Re: [Harbour] My FWH apps GPF using latest SVN

2008-09-22 Thread Enrico Maria Giordano
-Messaggio Originale- Da: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> A: "Harbour Project Main Developer List." Data invio: lunedì 22 settembre 2008 20.01 Oggetto: Re: [Harbour] My FWH apps GPF using latest SVN Hi Enrico. Have you tryed with some fwh\samples prg? My app with FWH July

Re: [Harbour] 2008-09-22 19:32 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-09-22 Thread Lorenzo Fiorini
On Mon, Sep 22, 2008 at 9:11 PM, Przemyslaw Czerpak <[EMAIL PROTECTED]> wrote: > If you are using unique order bag names then ordBagName() > should be enough. You do not have to use full path. The file names are created unique. BTW what do you think it's the better way to get unique file name in

Re: RE: RE: RE: [Harbour] can load always a large number of library?

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Massimo Belgrano wrote: > Now I have this > set C_USR=-DHB_WIN32_IO -DHB_FM_DL_ALLOC -DHB_MT_VM -DHB_FM_STATISTICS_OFF > -tWM -OS -Ov -Oi -Oc -Q > set HB_BUILD_ST=yes > I have changed to > set C_USR=-DHB_WIN32_IO -DHB_FM_DL_ALLOC -DHB_FM_STATISTICS_OFF -tWM -OS -Ov > -Oi

Re: [Harbour] Re: MSVS 2008: error with new alloc

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Szak�ts Viktor wrote: Hi Viktor, > I've now retried after a full rebuild (with same flags > as in prev message) and I'm getting the same error and > GPF results with small or even empty test program, > like "FUNC MAIN()". > Do you have any tips what could this be? Or how coul

[Harbour] 2008-09-22 16:19 UTC-0300 Antonio Carlos Pantaglione

2008-09-22 Thread [EMAIL PROTECTED]
2008-09-22 16:19 UTC-0300 Antonio Carlos Pantaglione <[EMAIL PROTECTED]> * harbour/contrib/rddads/ads1.c * using AdsCreateIndex61 when ADS_LIB_VERSION >= 610. This functions use ADS_DEFAULT as index page size parameter and force Advantage to compute a page size based on the key size to provid

RE: RE: RE: [Harbour] can load always a large number of library?

2008-09-22 Thread Massimo Belgrano
Now I have this set C_USR=-DHB_WIN32_IO -DHB_FM_DL_ALLOC -DHB_MT_VM -DHB_FM_STATISTICS_OFF -tWM -OS -Ov -Oi -Oc -Q set HB_BUILD_ST=yes I have changed to set C_USR=-DHB_WIN32_IO -DHB_FM_DL_ALLOC -DHB_FM_STATISTICS_OFF -tWM -OS -Ov -Oi -Oc -Q set HB_BUILD_ST= -Original Message- Fro

Re: [Harbour] 2008-09-22 19:32 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Lorenzo Fiorini wrote: > I've used as: >local cIdxFile := dbOrderInfo( DBOI_FULLPATH ) >ordBagClear( cIdxFile ) >return nil If you are using unique order bag names then ordBagName() should be enough. You do not have to use full path. > I've ported it to my local 1

Re: RE: RE: [Harbour] can load always a large number of library?

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Massimo Belgrano wrote: > I compiled harbour wsith set HB_BUILD_ST=yes because I think that with > this option can choice if link hbvm.lib I have normal mode with hbvmmt.lib > I have multi tread mode Exactly but you have to make some mistake in setting environment vars. I sug

RE: [Harbour] FLISOL 2008 - Venezuela Caracas

2008-09-22 Thread Massimo Belgrano
I refer to your project of develop a talk about Harbour Project by collect any kind of documentations like slides, docs, Can you share same doc? If I start a Multilingual Wiki with harbour you can be interested ? Vorrei realizzare un portale dove la documentazione e esempi siano da baricentro Cre

[Harbour] 2008-09-22 20:54 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-09-22 Thread Przemyslaw Czerpak
2008-09-22 20:54 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/source/rdd/dbfntx/dbfntx1.c * harbour/source/rdd/dbfcdx/dbfcdx1.c * do not allow to close production index by ordBagClear() when strict FP compatibility is set for production index or when _SET_AUTOP

[Harbour] 2008-09-22 20:40 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-09-22 Thread Przemyslaw Czerpak
2008-09-22 20:40 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/source/vm/classes.c * harbour/source/rdd/workarea.c * pacified BCC warnings * harbour/source/debug/dbgwa.prg * harbour/source/debug/debugger.prg * harbour/source/debug/dbghelp.prg * eliminated two sta

Re: [Harbour] 2008-09-22 19:32 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-09-22 Thread Lorenzo Fiorini
On Mon, Sep 22, 2008 at 7:32 PM, Przemyslaw Czerpak <[EMAIL PROTECTED]> wrote: > 2008-09-22 19:32 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) > * harbour/ChangeLog > ! corrected previous ChangeLog entry: instead of hb_waDetach()/ > hb_waRequest() should be db_dbDetach()/hb_dbReques

Re: [Harbour] FLISOL 2008 - Venezuela Caracas

2008-09-22 Thread Carlo Borelli
Pardon? You answered to an old message I posted. Do you mean MT with BCC libraries? Carlo. 2008/9/23 Massimo Belgrano <[EMAIL PROTECTED]>: > Have you same result? > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carlo Borelli > Sent: Friday, January

Re: [Harbour] My FWH apps GPF using latest SVN

2008-09-22 Thread [EMAIL PROTECTED]
>As subject. > >Any ideas? > >EMG Hi Enrico. Have you tryed with some fwh\samples prg? My app with FWH July 2007 build and ChangeLog 9465 is working fine, in ST mode and bcc 6.10 Regards, Toninho. __ Faça ligações para outros computadores com o

[Harbour] Re: MSVS 2008: error with new alloc

2008-09-22 Thread Szakáts Viktor
Hi Przemek, I've now retried after a full rebuild (with same flags as in prev message) and I'm getting the same error and GPF results with small or even empty test program, like "FUNC MAIN()". Do you have any tips what could this be? Or how could we get close to the solution? Brgds, Viktor On

[Harbour] Warnings

2008-09-22 Thread Enrico Maria Giordano
Warning W8012 source\vm\classes.c 4526: Comparing signed and unsigned values in function HB_FUN___CLSPREALLOCATE Warning W8012 source\rdd\workarea.c 2235: Comparing signed and unsigned values in function HB_FUN___RDDPREALLOCATE EMG -- EMAG Software Homepage: http://www.emagsoftware.it Th

RE: RE: [Harbour] can load always a large number of library?

2008-09-22 Thread Massimo Belgrano
I compiled harbour wsith set HB_BUILD_ST=yes because I think that with this option can choice if link hbvm.lib I have normal mode with hbvmmt.lib I have multi tread mode Why build harbour with set HB_BUILD_ST=yes? Why build harbour with set HB_BUILD_ST=no? Why build harbour with set HB_BUILD_ST=

[Harbour] 2008-09-22 14:34 UTC-0300 Antonio Carlos Pantaglione

2008-09-22 Thread toni...@fwi
2008-09-22 14:34 UTC-0300 Antonio Carlos Pantaglione <[EMAIL PROTECTED]> % source/rtl/dbedit.prg % source/rtl/dirscan.prg % source/rtl/errorsys.prg % source/rtl/hbini.prg % source/rtl/listbox.prg % source/rtl/objfunc.prg % source/rtl/tbrowse.prg % source/rtl/tclass.prg % source/rt

Re: RE: [Harbour] can load always a large number of library?

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Massimo Belgrano wrote: Hi Massimo, > I resolved __beginthreadex removing cw32.lib and adding cw32mt.lib > Also in not mt program we must load cw32mt.lib instead cw32.lib? No though it may be good practice for 3-rd party code which may use own threads and call CRTL function

[Harbour] 2008-09-22 19:32 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-09-22 Thread Przemyslaw Czerpak
2008-09-22 19:32 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/ChangeLog ! corrected previous ChangeLog entry: instead of hb_waDetach()/ hb_waRequest() should be db_dbDetach()/hb_dbRequest() * harbour/source/vm/hvm.c * disabled PRG tracing in default builds. If some

[Harbour] 2008-09-22 19:24 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

2008-09-22 Thread Szakáts Viktor
2008-09-22 19:24 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * bin/bld.bat - Removed recently added cw32mt.lib. ; Now, for MT builds 'set HB_USER_LIBS=cw32mt.lib' should be used. Where cw32mt.lib may also be cp32mt.lib, cp32mti.lib, cw32mti.lib depending on other factors.

RE: [Harbour] FLISOL 2008 - Venezuela Caracas

2008-09-22 Thread Massimo Belgrano
Have you same result? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carlo Borelli Sent: Friday, January 25, 2008 10:03 PM To: harbour@harbour-project.org Subject: [Harbour] FLISOL 2008 - Venezuela Caracas Good morning everybody, due to the event here li

[Harbour] 2008-09-22 19:19 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

2008-09-22 Thread Szakáts Viktor
2008-09-22 19:19 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * make_b32.mak * make_vc.mak * common.mak * source/rtl/hbgtcore.c ! Any messing with HB_GT_LIB and HB_GT_DEFAULT was removed from non-GNU make files, to leave these things to the source code itself (just like

RE: [Harbour] can load always a large number of library?

2008-09-22 Thread Massimo Belgrano
Grazie Carlo -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carlo Borelli Sent: Monday, September 22, 2008 6:47 PM To: Harbour Project Main Developer List. Subject: Re: [Harbour] can load always a large number of library? If I remember correctly, you n

RE: [Harbour] can load always a large number of library?

2008-09-22 Thread Massimo Belgrano
I resolved __beginthreadex removing cw32.lib and adding cw32mt.lib Also in not mt program we must load cw32mt.lib instead cw32.lib? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Massimo Belgrano Sent: Monday, September 22, 2008 6:06 PM To: Harbour Proj

Re: [Harbour] Remove last order added

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Lorenzo Fiorini wrote: Hi Lorenzo, > > No. in Harbour you can use ordBagClear(). AFAIR there were some > > libraries for CA-Cl*pper which give that functionality for any > > RDDs which supported ORDLSTDELETE() method. In SIX3 it was possible > > by sx_ClearOrder( cOrdBagName

RE: RE: [Harbour] Re: 2008-09-18 01:17UTC+0200PrzemyslawCzerpak(druzus/at/priv.onet.pl)

2008-09-22 Thread Massimo Belgrano
I have thinked Thanks but my hand have written tank A log time ago I have written "Mery Crismas" that can be a comic effect for duble error Perchè è più vicino a "mery per sempre" che "a buon natale" "mery per sempre" è Un film che andava all'epoca dell'errore -Original Message- From: [E

Re: [Harbour] can load always a large number of library?

2008-09-22 Thread Carlo Borelli
If I remember correctly, you need to link BCC cw32mt library instead of cw32. /* Se mi ricordo bene, devi linkare cw32mt al posto di cw32. */ Carlo. 2008/9/23 Massimo Belgrano <[EMAIL PROTECTED]>: > Wich disadvantage for load always this library > hbcplr.lib > hbrtl.lib > hbvm.lib > hblang.lib >

Re: RE: [Harbour] Re: 2008-09-18 01:17 UTC+0200PrzemyslawCzerpak(druzus/at/priv.onet.pl)

2008-09-22 Thread Lorenzo Fiorini
On Mon, Sep 22, 2008 at 6:38 PM, Massimo Belgrano <[EMAIL PROTECTED]> wrote: > Very tank LOL Molto serbatoio anche a te :))) best regards, Lorenzo ___ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/h

RE: RE: [Harbour] Re: 2008-09-18 01:17 UTC+0200PrzemyslawCzerpak(druzus/at/priv.onet.pl)

2008-09-22 Thread Massimo Belgrano
Very tank Is possible also display wich is the c compiler ? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Przemyslaw Czerpak Sent: Monday, September 22, 2008 6:30 PM To: Harbour Project Main Developer List. Subject: Re: RE: [Harbour] Re: 2008-09-18 01

Re: [Harbour] Remove last order added

2008-09-22 Thread Lorenzo Fiorini
On Mon, Sep 22, 2008 at 6:34 PM, Lorenzo Fiorini <[EMAIL PROTECTED]> wrote: > I've tried with DBFCDX but I get only: Could it be that's only supported by six driver? best regards, Lorenzo ___ Harbour mailing list Harbour@harbour-project.org http://list

Re: [Harbour] Remove last order added

2008-09-22 Thread Lorenzo Fiorini
On Mon, Sep 22, 2008 at 5:55 PM, Przemyslaw Czerpak <[EMAIL PROTECTED]> wrote: > No. in Harbour you can use ordBagClear(). AFAIR there were some > libraries for CA-Cl*pper which give that functionality for any > RDDs which supported ORDLSTDELETE() method. In SIX3 it was possible > by sx_ClearOrder

Re: [Harbour] Make_gnu and Mingw

2008-09-22 Thread Szakáts Viktor
Okay, thanks. I've updated my code, so just to correct myself - and this is even simpler: --- PROCEDURE HB_GTSYS() REQUEST HB_GT_GUI_DEFAULT /* Other REQUEST HB_GT_??? lines, like HB_GT_WVT, HB_GT_WIN may follow */ RETURN --- BTW, do we _really_ need HB_GT_LIB in our Harbour build files

Re: [Harbour] Remove last order added

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Lorenzo Fiorini wrote: > Looking in dbcmd.c I found: [...] > does it means that I can pass the bag name OR the index number? Yes but it will depend on RDD if numeric value will be accepted. Some RDDs may refuse it. best regards, Przemek ___

[Harbour] My FWH apps GPF using latest SVN

2008-09-22 Thread Enrico Maria Giordano
As subject. Any ideas? EMG -- EMAG Software Homepage: http://www.emagsoftware.it The EMG's ZX-Spectrum Page: http://www.emagsoftware.it/spectrum The Best of Spectrum Games: http://www.emagsoftware.it/tbosg The EMG Music page: http://www.emagsoftware.it/emgmusic

Re: RE: [Harbour] Re: 2008-09-18 01:17 UTC+0200 PrzemyslawCzerpak(druzus/at/priv.onet.pl)

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Massimo Belgrano wrote: > How is possible emulate //INFO > ? HB_GTVERSION(), HB_GTVERSION(1) > Harbour Terminal: Windows native console > ? hb_compiler() > Harbour 1.1.0dev (Rev. 9453) > ? os() > Windows Vista 6.0.6001 Service Pack 1 > ? hbbuildinfo(30) > DS avail=978788KB O

Re: [Harbour] Remove last order added

2008-09-22 Thread Lorenzo Fiorini
On Mon, Sep 22, 2008 at 5:55 PM, Przemyslaw Czerpak <[EMAIL PROTECTED]> wrote: > No. in Harbour you can use ordBagClear(). AFAIR there were some > libraries for CA-Cl*pper which give that functionality for any > RDDs which supported ORDLSTDELETE() method. In SIX3 it was possible > by sx_ClearOrder

[Harbour] can load always a large number of library?

2008-09-22 Thread Massimo Belgrano
Wich disadvantage for load always this library hbcplr.lib hbrtl.lib hbvm.lib hblang.lib hbcpage.lib hbmacro.lib hbcommon.lib hbdebug.lib hbpp.lib hbpcre.lib hbct.lib hbmisc.lib hbnf.lib hbzlib.lib HBMZIP.LIB hbusrrdd.lib hbrdd.lib rddntx.lib rddcdx.lib rddfpt.lib hbsix.lib gtgui.lib gtwvt.lib gtwvg

Re: [Harbour] Make_gnu and Mingw

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Szak�ts Viktor wrote: >>> PROCEDURE HB_GTSYS() >> REQUEST HB_GT_GUI_DEFAULT > Thanks. Very strange, I've been wrong > for years regarding this, even stranger > that PROCEDURE HB_GT_WVT_DEFAULT works > for me since very long. It works but in such case does not indirectly

Re: [Harbour] Remove last order added

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Lorenzo Fiorini wrote: Hi Lorenzo, > I Cl*pper/DBFCDX was not possible remove an order from the list after > an OrdListAdd. > Is it still true? No. in Harbour you can use ordBagClear(). AFAIR there were some libraries for CA-Cl*pper which give that functionality for any RDDs

Re: [Harbour] RDD controversy question for all people

2008-09-22 Thread Luis Krause Mantilla
I like the idea too. Miguel Angel Marchuet wrote: View the controversy it creates, I propose to upload the following rdds: dbf1.c strict compatibility with C/52 (RT and Types) DBFCDX52.LIB dbf2.c strict compatibility with CL53 (RT, BM and Types)DBFCDX53.LIB dbf3.c strict compatibility with

RE: [Harbour] Re: 2008-09-18 01:17 UTC+0200 PrzemyslawCzerpak(druzus/at/priv.onet.pl)

2008-09-22 Thread Massimo Belgrano
How is possible emulate //INFO ? HB_GTVERSION(), HB_GTVERSION(1) Harbour Terminal: Windows native console ? hb_compiler() Harbour 1.1.0dev (Rev. 9453) ? os() Windows Vista 6.0.6001 Service Pack 1 ? hbbuildinfo(30) DS avail=978788KB OS avail=2062008KB EMM avail=0KB MemStat:Off MT:On -Ori

Re: RE: [Harbour] Re: 2008-09-18 01:17 UTC+0200 Przemyslaw Czerpak(druzus/at/priv.onet.pl)

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Massimo Belgrano wrote: Hi Massimo, > What about add to speedtest > Set alternate to sppedtest.log ADDITIVE > And //INFO information? The information about MT mode and FM statistic is already included in standard speedtst.prg output. If you want to redirect speedtst.prg ou

Re: [Harbour] 2008-09-22 15:23 UTC+0200 Przemyslaw Czerpak(druzus/at/priv.onet.pl)

2008-09-22 Thread Enrico Maria Giordano
-Messaggio Originale- Da: "Przemyslaw Czerpak" <[EMAIL PROTECTED]> A: Data invio: lunedì 22 settembre 2008 15.24 Oggetto: [Harbour] 2008-09-22 15:23 UTC+0200 Przemyslaw Czerpak(druzus/at/priv.onet.pl) 2008-09-22 15:23 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour

[Harbour] Remove last order added

2008-09-22 Thread Lorenzo Fiorini
I Cl*pper/DBFCDX was not possible remove an order from the list after an OrdListAdd. Is it still true? best regards, Lorenzo ___ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

Re: [Harbour] Make_gnu and Mingw

2008-09-22 Thread Szakáts Viktor
PROCEDURE HB_GTSYS() REQUEST HB_GT_GUI_DEFAULT Thanks. Very strange, I've been wrong for years regarding this, even stranger that PROCEDURE HB_GT_WVT_DEFAULT works for me since very long. I'll do some tests a bit later. Brgds, Viktor ___ Har

Re: [Harbour] Make_gnu and Mingw

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Szak�ts Viktor wrote: >> ANNOUNCE GTSYS >> ANNOUNCE HB_GT_SYS >> REQUEST HB_GT_WIN >> REQUEST HB_GT_WVT >> REQUEST HB_GT_STD >> REQUEST HB_GT_GUI >> REQUEST HB_GT_VWT_DEFAULT >> >> Must I replace With follow? > > The above has a few problems: > - REQUEST HB_GT_VWT

Re: [Harbour] 2008-09-22 16:37 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-09-22 Thread Szakáts Viktor
Many thanks Przemek. Brgds, Viktor On 2008.09.22., at 16:37, Przemyslaw Czerpak wrote: 2008-09-22 16:37 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/source/rtl/hbregex.c * added hack to force linking newer PCRE versions not the one included in BCC RTL when Harbour i

Re: [Harbour] Make_gnu and Mingw

2008-09-22 Thread Szakáts Viktor
Notice that you most probably need Harbour to be built with special switches to make this work. It won't work with the default Harbour build. Przemek, can you comment, this is a so oftenly appearing question, that it would be nice to have a common solution. [ my proposed one works with default b

Re: [Harbour] Make_gnu and Mingw

2008-09-22 Thread Szakáts Viktor
So ia not good this ANNOUNCE GTSYS ANNOUNCE HB_GT_SYS REQUEST HB_GT_WIN REQUEST HB_GT_WVT REQUEST HB_GT_STD REQUEST HB_GT_GUI REQUEST HB_GT_VWT_DEFAULT Must I replace With follow? The above has a few problems: - REQUEST HB_GT_VWT_DEFAULT is wrong and should be ANNOUNCE. - ANNOUNCE

[Harbour] 2008-09-22 16:37 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-09-22 Thread Przemyslaw Czerpak
2008-09-22 16:37 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/source/rtl/hbregex.c * added hack to force linking newer PCRE versions not the one included in BCC RTL when Harbour is compiled without HB_PCRE_REGEX_BCC. If user application will uses regex expressions (

Re: [Harbour] Make_gnu and Mingw

2008-09-22 Thread Szakáts Viktor
Hi Paul, gcc reports this link error: c:\harbour\lib\w32\mingw32/libgtgui.a(gtgui.o):gtgui.c:(.text+0x1b9): multiple definition of `HB_FUN_HB_GT_GUI_DEFAULT' You'll need to remove all other solutions targeting this same goal (requesting GTGUI and making it the default GT), like special buil

Re: RE: [Harbour] Make_gnu and Mingw

2008-09-22 Thread Paul Strand
Mr. Przemek, Your suggestion solved it, thanks: ANNOUNCE HB_GT_SYS REQUEST HB_GT_GUI REQUEST HB_GT_GUI_DEFAULT Paul ___ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

RE: [Harbour] Re: 2008-09-18 01:17 UTC+0200 Przemyslaw Czerpak(druzus/at/priv.onet.pl)

2008-09-22 Thread Massimo Belgrano
What about add to speedtest Set alternate to sppedtest.log ADDITIVE And //INFO information? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Przemyslaw Czerpak Sent: Monday, September 22, 2008 4:15 PM To: Harbour Project Main Developer List. Subject: Re

Re: [Harbour] Make_gnu and Mingw

2008-09-22 Thread Paul Strand
Mr. Viktor, gcc reports this link error: c:\harbour\lib\w32\mingw32/libgtgui.a(gtgui.o):gtgui.c:(.text+0x1b9): multiple definition of `HB_FUN_HB_GT_GUI_DEFAULT' seems there is something wrong. Paul > Pls use this in your app code: > > --- > PROCEDURE HB_GTSYS() > REQUEST HB_GT_GUI > RETURN

Re: RE: [Harbour] Make_gnu and Mingw

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Massimo Belgrano wrote: > So ia not good this >ANNOUNCE GTSYS This is not necessary in Harbour. >ANNOUNCE HB_GT_SYS >REQUEST HB_GT_WIN >REQUEST HB_GT_WVT >REQUEST HB_GT_STD >REQUEST HB_GT_GUI >REQUEST HB_GT_VWT_DEFAULT That's OK. > Must I replac

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

2008-09-22 Thread Przemyslaw Czerpak
2008-09-22 16:14 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbstack.h * harbour/source/vm/estack.c + added support for using stack macros without native compiler TLS support in MT mode. * enabled stack macros by default for OS2 MT builds David, if

Re: [Harbour] Re: 2008-09-18 01:17 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-09-22 Thread Przemyslaw Czerpak
On Thu, 18 Sep 2008, David Arturo Macias Corona wrote: Hi David, > Below are results of current Harbour under eComStation 1.2MR > gcc 3.3.5 > b) speedtst.prg > ST > total application time: 46.99 > total real time: 46.99 > MT >

RE: [Harbour] Make_gnu and Mingw

2008-09-22 Thread Massimo Belgrano
So ia not good this ANNOUNCE GTSYS ANNOUNCE HB_GT_SYS REQUEST HB_GT_WIN REQUEST HB_GT_WVT REQUEST HB_GT_STD REQUEST HB_GT_GUI REQUEST HB_GT_VWT_DEFAULT Must I replace With follow? PROCEDURE HB_GTSYS() REQUEST HB_GT_WIN REQUEST HB_GT_WVT REQUEST HB_GT_STD REQUEST

[Harbour] 2008-09-22 15:23 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-09-22 Thread Przemyslaw Czerpak
2008-09-22 15:23 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/source/rtl/hbinet.c ! fixed W32 compilation best regards Przemek ___ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/

Re: [Harbour] Make_gnu and Mingw

2008-09-22 Thread Szakáts Viktor
Hi Paul, Pls use this in your app code: --- PROCEDURE HB_GTSYS() REQUEST HB_GT_GUI RETURN PROCEDURE HB_GT_GUI_DEFAULT() RETURN --- And you won't need it. [ All other methods circulating on the list are unnecessarily complicated and with side-effects. ] Brgds, Viktor On 2008.09.22.,

[Harbour] hbinet.c problem with windows and bcc32

2008-09-22 Thread bill robertson
Cannot get a clean compile in Harbour with windows and bcc32. Get an error at line 354 stating that ulong uladdr can't be placed here. The problem is that hb_vmUnlock(); at line 350 makes line 354 invalid. Starting at line 350 in hbinet.c /* TOFIX: make it MT safe */ --> the placement h

[Harbour] a tools For our administrators

2008-09-22 Thread Massimo Belgrano
Package name: releaseforge Version: 1.3 Upstream Author : Phil Schwartz <[EMAIL PROTECTED]> URL : http://releaseforge.sourceforge.net/ License : GPL Description : alternative to SourceForge's File Release System (FRS) An open source utility design

Re: [Harbour] 2008-09-22 02:34 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Mindaugas Kavaliauskas wrote: Hi Mindaugas, >> + added .prg function hb_threadSelf() -> | NIL >> It returns thread ID pointer variable or NIL when thread was >> registered without it (main thread and some 3-rd party threads >> created by C API) > Can ma

Re: [Harbour] SIGFPE during build of hbtest

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Maurilio Longo wrote: Hi Maurilio, > I'm trying to buil harbour on OS/2 with GCC, I'm getting this: > ../../../../source/main/os2/gcc/harbour.exe ../../rt_hvma.prg -n -q0 -w3 -es2 > -k > m -I../../../../include > Killed by SIGFPE > pid=0x62a5 ppid=0x628a tid=0x0001 slot=0x0

Re: [Harbour] hb_wadetach vs hb_dbdetach

2008-09-22 Thread Przemyslaw Czerpak
On Mon, 22 Sep 2008, Lorenzo Fiorini wrote: Hi Lorenzo. > Does hb_dbdetach supersedes hb_wadetach? > I don't have harbour/source/rdd/wadetach.c in the svn. Sorry it was my mistake. The 1-st version was using 'wa' prefix then I decided to change it to 'db' before committing but I forgot to update

RE: [Harbour] inheritance in harbour

2008-09-22 Thread Massimo Belgrano
Thanks alex -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alex Strickland Sent: Monday, September 22, 2008 2:40 PM To: Harbour Project Main Developer List. Subject: Re: [Harbour] inheritance in harbour Massimo Belgrano wrote: > can used inheritance in

Re: [Harbour] 2008-09-21 20:29 UTC-0800 Pritpal Bedi ([EMAIL PROTECTED])

2008-09-22 Thread Szakáts Viktor
Hi Pritpal, (small typo fixed below) That being said, the problem in hand is probably that WHT__GETDLGPROC() was using an explicit hb_retptr() call, while it should have been HB_RETWI( __DlgProc ). Please replace current hb_retnl( ( ULONG ) __DlgProc ) with hb_retnint( __DlgProc ) and see if

Re: [Harbour] Make_gnu and Mingw

2008-09-22 Thread Paul Strand
Mr. Viktor, I have found that I have to link libgtwin.a and libgtgui.a for mingw are they both required ? I thought that libgtwin.a was not needed for gui mode Paul ___ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/m

Re: [Harbour] 2008-09-21 20:29 UTC-0800 Pritpal Bedi ([EMAIL PROTECTED])

2008-09-22 Thread Szakáts Viktor
Hi Pritpal, ; TOFIX: HBWhat.lib is not usable as is still. Viktor, please examine these two functions in wincorec.c HB_FUNC( WHT__GETDLGPROC ) BOOL CALLBACK __DlgProc( H... ) where I have changed the casts to original code. Only then I could get it worked. It is

Re: [Harbour] inheritance in harbour

2008-09-22 Thread Alex Strickland
Massimo Belgrano wrote: can used inheritance in harbour for Inherit a rdd or inherit a GT? Will harbour suggest a standard way for inherit GT/RDD features rather than keeping a local copy of it? . So harbour can grow Without duplicating code You can inherit already. I am sketchy on the details

[Harbour] inheritance in harbour

2008-09-22 Thread Massimo Belgrano
can used inheritance in harbour for Inherit a rdd or inherit a GT? Will harbour suggest a standard way for inherit GT/RDD features rather than keeping a local copy of it? . So harbour can grow Without duplicating code Massimo Belgrano ___ Harbour maili

Re: [Harbour] 2008-09-22 04:27 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-09-22 Thread [EMAIL PROTECTED]
>2008-09-22 04:27 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) > * harbour/source/rtl/hbinet.c >! fixed typo in previous commit which broke MS-Win builds >* check hb_vmReaquestQuery() after executing use codeblocks > Przemek thanks, but now, I have this error: source\rtl\hbinet.c

RE: [Harbour] MT TOFIX / TODO

2008-09-22 Thread Massimo Belgrano
Compliment Genius Can i give you some little clarification regarding "multi windows interface for thread " TODO: CTWIN is not MT safe yet - it will be updated together with core GT when we add multi window interface for thread with own console window. I admit that I

RE: [Harbour] RDD controversy question for all people

2008-09-22 Thread Massimo Belgrano
Afaik Xbase++ and harbour have one RDD/DBE for dbf layer and are compatible with 99% of other engine -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Miguel Angel Marchuet Sent: Monday, September 22, 2008 12:55 PM To: Harbour Project Main Developer List.

Re: [Harbour] MT TOFIX / TODO

2008-09-22 Thread Szakáts Viktor
Hi Przemek, 1. Tracelog is not MT safe BTW: By default HVM is compiled with optional .prg function call tracing. This feature can be controlled (enabled/disabled) by __TRACEPRGCALLS() function. If user does not want to use it then he can rebuild Harbour with HB_NO_TRACE.

Re: [Harbour] RDD controversy question for all people

2008-09-22 Thread Miguel Angel Marchuet
Ok I will do it Alex Strickland escribió: Miguel Angel Marchuet wrote: Add a level more to inheritance will allow us better cope with all versions have a maintenance easier, and some have rdds faster and lighter. I know this has come up before, but I never understood the answer (or maybe t

[Harbour] hb_wadetach vs hb_dbdetach

2008-09-22 Thread Lorenzo Fiorini
Does hb_dbdetach supersedes hb_wadetach? I don't have harbour/source/rdd/wadetach.c in the svn. best regards, Lorenzo 2008-09-20 00:42 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + harbour/source/rdd/wadetach.c + added .prg functions: hb_waDetach( [|], [] ) -> h

  1   2   >