[Harbour] SF.net SVN: harbour-project:[13532] trunk/harbour

2010-01-11 Thread druzus
Revision: 13532 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=13532&view=rev Author: druzus Date: 2010-01-11 11:22:05 + (Mon, 11 Jan 2010) Log Message: --- 2010-01-11 12:21 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/src/rtl/hbzne

[Harbour] Harbour 2.0.0 contrib libs for OS/2-eCS

2010-01-11 Thread David Arturo Macias Corona
Harbour 2.0.0 contrib libs file for OS/2-eComStation are available in Harbour download page, as: harbour-2.0.0.contrib-os2.zip It contain libs for: a) Cairo b) Curl c) MySQL d) Postgres e) OpenSSL David Macias ___ Harbour mailing list (attachment

[Harbour] Re: SF.net SVN: harbour-project:[13532] trunk/harbour

2010-01-11 Thread Itamar Lins
I need examples of use netio. For me newbe user, how to make server activate and client side conections. Best Regards, Itamar M. Lins Jr. escreveu na mensagem news:e1nuilw-0001f1...@c3vjzd1.ch3.sourceforge.com... > Revision: 13532 > > http://harbour-project.svn.sourceforge.net/harbour-project/

Re: [Harbour] SF.net SVN: harbour-project:[13531] trunk/harbour

2010-01-11 Thread Vailton Renato
Hi! After creating an empty project, set it as current, create one empty .PRG and then I went into the project properties to add this new .PRG to the current project I got this error: Error BASE/1004 Message not found: HBIDE:ADDSOURCEINTREE Called from __ERRRT_SBASE(0) Called from HBIDE:ERROR(0)

[Harbour] SF.net SVN: harbour-project:[13533] trunk/harbour

2010-01-11 Thread druzus
Revision: 13533 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=13533&view=rev Author: druzus Date: 2010-01-11 13:44:04 + (Mon, 11 Jan 2010) Log Message: --- 2010-01-11 14:10 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/contrib/hbnet

Re: [Harbour] Re: SF.net SVN: harbour-project:[13532] trunk/harbour

2010-01-11 Thread Massimo Belgrano
I have composed a document with signficative post, sample , question regarding netio http://docs.google.com/View?id=dhmtv9fs_2399hrqv8g8 Can anybody revise? I can give full access is somebody is intrested 2010/1/11 Itamar Lins > I need examp

Re: [Harbour] Study about return GCs generic.

2010-01-11 Thread Xavi
Hi Przemek, The ides of hb_itemGetPtrGC() is to _NOT_ make such things and return _ONLY_ pointers which are exactly the requested type. ... Ok, I can assume so. return ( HANDLE ) ( ph ? *ph : NULL ); But this assumes that it's always GC. Perhaps we need an API function .- BOOL hb_i

[Harbour] dbf file with bVersion == 0x8C

2010-01-11 Thread Maurilio Longo
Hi Przemyslaw and all, I've got a .dbf file (with a .dbt memo) which cannot be opened and has, as first byte, 0x8C. Do you know which program creates such files and/or if it can be handled by current harbour rdd (adding a 0x8C case inside dbf1.c)? Thanks. Maurilio. -- __ | | | |__

[Harbour] SF.net SVN: harbour-project:[13534] trunk/harbour

2010-01-11 Thread druzus
Revision: 13534 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=13534&view=rev Author: druzus Date: 2010-01-11 15:25:53 + (Mon, 11 Jan 2010) Log Message: --- 2010-01-11 16:24 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + harbour/contrib/hbnet

[Harbour] Error base/1004 no exported method: HB_GTINFO recompiling an old program

2010-01-11 Thread Massimo Belgrano
Hi all i compile my old program without error but when running i receive Error base/1004 no exported method: HB_GTINFO What can be appened? What is error "no exported method" Missing lib or sequence hbmk2 maindel.hbp structure of maindel.hbp -m -p -w0 -omaindel.exe -trace -DEURO -D__GTWVT__ -GUI

Re: [Harbour] Study about return GCs generic.

2010-01-11 Thread Przemysław Czerpak
On Mon, 11 Jan 2010, Xavi wrote: Hi, > ... Ok, I can assume so. > > return ( HANDLE ) ( ph ? *ph : NULL ); > > But this assumes that it's always GC. > Perhaps we need an API function .- It does not assume anything. It only accepts any pointer items but I do not see any difference in accep

Re: [Harbour] Error base/1004 no exported method: HB_GTINFO recompiling an old program

2010-01-11 Thread Przemysław Czerpak
On Mon, 11 Jan 2010, Massimo Belgrano wrote: Hi, > i compile my old program without error but when running i receive > Error base/1004 no exported method: HB_GTINFO > > What can be appened? > What is error "no exported method" > Missing lib or sequence you have somewhere in your code: : HB

Re: [Harbour] Study about return GCs generic.

2010-01-11 Thread Mindaugas Kavaliauskas
Hi, Sorry but I do not see any problem so I cannot advice you any solution. You have to precisely define what you need and why. From Xavi's sample: HANDLE wapi_par_HANDLE( int iParam ) { void ** ph = ( void ** ) hb_parptrGC( NULL, iParam ); return (ph ? ( HANDLE ) *ph : ( HANDLE ) hb_

[Harbour] SF.net SVN: harbour-project:[13535] trunk/harbour

2010-01-11 Thread vouchcac
Revision: 13535 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=13535&view=rev Author: vouchcac Date: 2010-01-11 16:15:05 + (Mon, 11 Jan 2010) Log Message: --- 2010-01-11 08:12 UTC-0800 Pritpal Bedi (prit...@vouchcac.com) * contrib/hbide/ideeditor.prg

Re: [Harbour] Error base/1004 no exported method: HB_GTINFO recompiling an old program

2010-01-11 Thread Massimo Belgrano
You are right follow my row tried using debug thank to Przemek suggestion screenHeight:= HB_GTINFO( HB_GTI_SCREENWIDTH, HB_GTINFO( HB_GTI_DESKTOPWIDTH ) ) screenHeight:HB_GTINFO( HB_GTI_SCREENHEIGHT, HB_GTINFO( HB_GTI_DESKTOPHEIGHT ) - 50 ) very bad code 2010/1/11 Przemysław Czerpak > On

Re: [Harbour] dbf file with bVersion == 0x8C

2010-01-11 Thread Przemysław Czerpak
On Mon, 11 Jan 2010, Maurilio Longo wrote: Hi, > I've got a .dbf file (with a .dbt memo) which cannot be opened and has, as > first byte, 0x8C. > Do you know which program creates such files and/or if it can be handled by > current harbour rdd (adding a 0x8C case inside dbf1.c)? The first byte i

Re: [Harbour] Study about return GCs generic.

2010-01-11 Thread Przemysław Czerpak
On Mon, 11 Jan 2010, Mindaugas Kavaliauskas wrote: Hi, > From Xavi's sample: > >HANDLE wapi_par_HANDLE( int iParam ) > >{ > > void ** ph = ( void ** ) hb_parptrGC( NULL, iParam ); > > > > return (ph ? ( HANDLE ) *ph : ( HANDLE ) hb_parptr( iParam )); > >} > I guess, he is trying to avoid logi

Re: [Harbour] Re: SF.net SVN: harbour-project:[13532] trunk/harbour

2010-01-11 Thread Przemysław Czerpak
On Mon, 11 Jan 2010, Itamar Lins wrote: Hi, > I need examples of use netio. > For me newbe user, how to make server activate and client side conections. In contrib/hbnetio/utils/netiosrv.prg you have simple server code. Compile it and execute enabling RPC support and using "topsecret" as encrypt

Re: [Harbour] SF.net SVN: harbour-project:[13531] trunk/harbour

2010-01-11 Thread Pritpal Bedi
Hi Vailton Renato wrote: > > After creating an empty project, set it as current, create one empty > .PRG and then I went into the project properties to add this new .PRG > to the current project I got this error: > > Error BASE/1004 Message not found: HBIDE:ADDSOURCEINTREE > Called from __ERR

Re: [Harbour] SF.net SVN: harbour-project:[13531] trunk/harbour

2010-01-11 Thread Vailton Renato
Hi! I just do it ... apparently I could not reproduce more this problem. =D Regards, Vailton Renato ___ Harbour mailing list (attachment size limit: 40KB) Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

[Harbour] How compile gtwvw?

2010-01-11 Thread Massimo Belgrano
I try compile c:\harbour\examples\gtwvw> Have i made same error? HBMK2 GTWVW.HBP -REBUILD hbmk2: Processing environment options: -compiler=mingw hbmk2: Processing: gtwvw.hbc hbmk2: Compiling... gtwvw.c: In function 'hb_gt_FuncInit': gtwvw.c:7922: error: 'gt_funcs' undeclared (first use in this fun

Re: [Harbour] dbf file with bVersion == 0x8C

2010-01-11 Thread Maurilio Longo
Thanks Przemyslaw, do you have any idea which program/language writes such kind of .dbf files? Maurilio. Przemysław Czerpak wrote: > On Mon, 11 Jan 2010, Maurilio Longo wrote: > > Hi, > >> I've got a .dbf file (with a .dbt memo) which cannot be opened and has, as >> first byte, 0x8C. >> Do yo

Re: [Harbour] How compile gtwvw?

2010-01-11 Thread Przemysław Czerpak
On Mon, 11 Jan 2010, Massimo Belgrano wrote: Hi, > I try compile > c:\harbour\examples\gtwvw> > Have i made same error? > HBMK2 GTWVW.HBP -REBUILD > hbmk2: Processing environment options: -compiler=mingw > hbmk2: Processing: gtwvw.hbc > hbmk2: Compiling... > gtwvw.c: In function 'hb_gt_FuncInit':

[Harbour] Re: dbf file with bVersion == 0x8C

2010-01-11 Thread Angel Pais
dbf version 7 was defined as is used by Visual Dbase - www.dbase.com and yes, dbase still exists hth Angel ___ Harbour mailing list (attachment size limit: 40KB) Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

Re: [Harbour] dbf file with bVersion == 0x8C

2010-01-11 Thread Przemysław Czerpak
On Mon, 11 Jan 2010, Maurilio Longo wrote: Hi, > do you have any idea which program/language writes such kind of .dbf files? Probably some newer dBase versions, i.e. Visual dBase but I've never used them so I cannot help you. Maybe some dBase users can help you. Of course if the signature confir

Re: [Harbour] How compile gtwvw?

2010-01-11 Thread Massimo Belgrano
not intentional SET HB_WITH_ADS=C:\DEVL\acesdk SET HB_WITH_QT=C:/DEVL/qt/4.5.3/INCLUDE SET HB_BUILD_IMPLIB=yes SET HB_WITH_MYSQL=C:\DEVL\MySQL51\INCLUDE SET HB_COMPILER=mingw SET HB_INSTALL_PREFIX=C:\HARBOUR SET PATH=C:\DEVL\MinGWtdm\BIN;C:\HARBOUR\BIN\WIN\mingw;C:\DEVL\QT\4.5.3\BIN;%PATH% WIN-MAK

[Harbour] SF.net SVN: harbour-project:[13536] trunk/harbour

2010-01-11 Thread druzus
Revision: 13536 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=13536&view=rev Author: druzus Date: 2010-01-11 18:40:44 + (Mon, 11 Jan 2010) Log Message: --- 2010-01-11 19:40 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/contrib/hbnet

[Harbour] SF.net SVN: harbour-project:[13537] trunk/harbour

2010-01-11 Thread vouchcac
Revision: 13537 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=13537&view=rev Author: vouchcac Date: 2010-01-12 01:57:55 + (Tue, 12 Jan 2010) Log Message: --- 2010-01-11 08:12 UTC-0800 Pritpal Bedi (prit...@vouchcac.com) + contrib/hbide/resources/fin

Re: [Harbour] Study about return GCs generic.

2010-01-11 Thread Xavi
Thank you very much Mindaugas, I'm trying to mix both versions but when the address of the HB_GC_FUNCS is not available I don't know how to do it. Yes, thank you Przemek, I can do the same with .- HANDLE wapi_par_HANDLE( int iParam ) { PHB_ITEM pItem = hb_param( iParam, HB_IT_POINTER );