[Harbour] Error building hbrun

2009-03-06 Thread Juan Gálvez
Hi all, I'm trying to build Harbour (current svn) and I get this error : bcc32.exe -4 -O2 -OS -Ov -Oi -Oc -q -d -Q -w -w-sig- -tWM -ehbrun.exe hbrun.obj -L../../../../lib/win/bcc ../../../../lib/win/bcc/hbextern.lib ../../../../lib/win/bcc/hbdebug.lib ../../../../lib/win/bcc/hbvm.lib ../..

Re: [Harbour] unresolved external symbol _HB_FUN_HB_SYMBOL_UNUSED(SOLVED)

2009-03-13 Thread Juan Gálvez
Hi all, Przemek, BTW, I also get this error building Harbour : ../../../../source/main/win/bcc/harbour.exe ../../hbrun.prg -n1 -i../../../../include -q0 -w3 -es2 -km -l -gc0 -l bcc32.exe -I. -I../../../../include -q -d -Q -w -w-sig- -tWM -4 -O2 -OS -Ov -Oi -Oc -DHB_FM_WIN_ALLOC -DHB_HASH_MSG

Re: [Harbour] unresolved external symbol_HB_FUN_HB_SYMBOL_UNUSED(SOLVED)

2009-03-13 Thread Juan Gálvez
bour] unresolved external symbol_HB_FUN_HB_SYMBOL_UNUSED(SOLVED) On Fri, 13 Mar 2009, Juan Gálvez wrote: Hi, BTW, I also get this error building Harbour : ../../../../source/main/win/bcc/harbour.exe ../../hbrun.prg -n1 -i../../../../include -q0 -w3 -es2 -km -l -gc0 -l bcc32.exe -I. -I../../../../include -q

[Harbour] Block methods and extended codeblock

2009-03-13 Thread Juan Gálvez
Hi, I think extended codeblocks don't work inside block methods and I wonder if it's a well-known and expected behavior. CLASS MyClass ... METHOD lMyMethod( xArg ) BLOCK <|Self, xArg| ...

Re: [Harbour] Block methods and extended codeblock

2009-03-16 Thread Juan Gálvez
Friday, March 13, 2009 7:19 PM Subject: Re: [Harbour] Block methods and extended codeblock On Fri, 13 Mar 2009, Juan Gálvez wrote: Hi, I think extended codeblocks don't work inside block methods and I wonder if it's a well-known and expected behavior. CLASS MyClass ... MET

Re: [Harbour] Block methods and extended codeblock

2009-03-16 Thread Juan Gálvez
Hi Przemek, Many thanks for explanations. Best regards Juan - Original Message - From: "Przemyslaw Czerpak" To: "Harbour Project Main Developer List." Sent: Monday, March 16, 2009 12:45 PM Subject: Re: [Harbour] Block methods and extended codeblock On Mo

Re: [Harbour] To Przemek

2008-09-04 Thread Juan Gálvez
Hi Przemek, BTW ... Can some way exist of improving the delays of the user concurrence of DBFCDX under Windows ? What is your opinion ? Many thanks Juan - Original Message - From: "Przemyslaw Czerpak" <[EMAIL PROTECTED]> To: "Harbour Project Main Developer List." Sent: Thursday, Se

[Harbour] About DbOrderInfo( DBOI_CUSTOM ) / OrdCustom()

2008-09-05 Thread Juan Gálvez
Hi Przemek, I noticed a custom tag cannot be convert to NO custom. It isn't posible due to the synchronization between pTag->Template and pTag->Custom. Is there some way to do it ? Many thanks Juan ___ Harbour mailing list Harbour@harbour-project

[Harbour] About DBFCDX custom tags

2008-09-05 Thread Juan Gálvez
Hi Przemek, I have a situation with a CUSTOM tag that contains KEY and FOR clause. I think it's a normal situation that OrdKeyAdd() / OrdKeyDel() don't work if the record doesn't respect the FOR clause. When a valid record is modified and it stops to be valid for the FOR clause ... Should no

Re: [Harbour] About DBFCDX custom tags

2008-09-05 Thread Juan Gálvez
Hi Przemek, I have a situation with a CUSTOM tag that contains KEY and FOR clause. I think it's a normal situation that OrdKeyAdd() / OrdKeyDel() don't work if the record doesn't respect the FOR clause. When a valid record is modified and it stops to be valid for the FOR clause ... Should not

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

2008-09-15 Thread Juan Gálvez
- Original Message - From: "Przemysław Czerpak" <[EMAIL PROTECTED]> To: "Harbour Project Main Developer List." Sent: Saturday, September 13, 2008 7:18 PM Subject: [Harbour] ChangeLog 2008-09-13 18:49 UTC+0200 Przemyslaw Czerpak(druzus/at/priv.onet.pl) 2008-09-13 18:49 UTC+0200 Pr

Re: [Harbour] Sample of the problem with FWH

2008-10-03 Thread Juan Gálvez
Hi Enrico, Is your current FWH version using the function TrackMouseEvent() ? Best regards Juan - Original Message - From: "Enrico Maria Giordano" <[EMAIL PROTECTED]> To: "Harbour Project Main Developer List." Sent: Friday, October 03, 2008 10:29 AM Subject: [Harbour] Sample of the p

Re: [Harbour] Sample of the problem with FWH

2008-10-03 Thread Juan Gálvez
2008 11:15 AM Subject: Re: [Harbour] Sample of the problem with FWH -Messaggio Originale- Da: "Juan Gálvez" <[EMAIL PROTECTED]> A: "Harbour Project Main Developer List." Data invio: venerdì 3 ottobre 2008 10.56 Oggetto: Re: [Harbour] Sample of the problem

[Harbour] About HB_TokenGet() function

2008-11-18 Thread Juan Gálvez
Hi all, Is there some technical reason so that the behavior of HB_TokenGet() is different when the delimitador is the space character ? If yes ... Could it be changed to be an optional behavior ? ? HB_TokenGet( ";2;3;4", 1, ";" )// It shows "" ? HB_TokenGet( ";2;3;4", 2, ";" )// It sh

Re: [Harbour] About HB_TokenGet() function

2008-11-18 Thread Juan Gálvez
? HB_TokenGet( " 2 3 4", 1, " " )// It shows "3" I'm sorry, in the above line I want to say : ? HB_TokenGet( " 2 3 4", 2, " " )// It shows "3" Best regards Juan ___ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project

[Harbour] PCode DLL

2009-01-08 Thread Juan Gálvez
Hi all, I'm trying to use a PCode DLL (without harbour.dll) with current SVN but it doesn't work :( The DLL is generated and loaded correctly (it's created with maindllp.c and BCC58) but it seems that hb_vmProcessSymbolsEx() isn't able to locate hb_vmProcessDynLibSymbols(). Any help is wel

Re: [Harbour] PCode DLL

2009-01-09 Thread Juan Gálvez
Hi Przemek, If you want to used PCODE DLLs with static Harbour binaries then you have to compile Harbour exporting public symbols like for share harbour library. It's enough to set HB_DYNLIB macro. F.e. by: set C_USR=-DHB_DYNLIB then rebuild Harbour. It works fine :) I thought -D__EXPORT_

Re: [Harbour] PCode DLL

2009-01-09 Thread Juan Gálvez
Many thanks - Original Message - From: "Przemyslaw Czerpak" To: "Harbour Project Main Developer List." Sent: Friday, January 09, 2009 11:27 AM Subject: Re: [Harbour] PCode DLL On Fri, 09 Jan 2009, Juan Gálvez wrote: Hi Juan, If you want to used PCODE DLLs

Re: [Harbour] Errors

2009-02-11 Thread Juan Gálvez
Hi Przemek, ... -wb- in xHarbour only disables warnings for unused clodeblock local variables. ... What do you think about implementing this flag in Harbour? Best regards Juan ___ Harbour mailing list Harbour@harbour-project.org http://lists.harbo

Re: [Harbour] 2008-02-04 09:31 UTC+0100 Przemyslaw Czerpak(druzus/at/priv.onet.pl)

2008-02-08 Thread Juan Gálvez
Pritpal, Viktor, Przemek, all, I'm not a Harbour developper but I absolutely agree and I want to participate in this request ... I respect them but I'm very sad after hearing the Przemek's decision. Best regards Juan - Original Message - From: "Pritpal Bedi" <[EMAIL PROTECTED]> To:

[Harbour] DbOrderInfo( DBOI_CUSTOM )

2008-03-04 Thread Juan Gálvez
Hi all, Przemek, Is there any secondary effect in changing dynamically the CUSTOM flag of the existent indexes ? Best regards Juan ___ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

[Harbour] Memory loss in DbUseArea() ?

2008-05-02 Thread Juan Gálvez
Hi all, Przemek, Attached you can see a xHarbour test ( HB_MEM_BLOCKS doesn't exist in Harbour FM.C ) that shows how memory blocks go increasing when we call DbUseArea() with new file name. Is it a normal behavior ? Many thanks Juan #include "hbmemory.ch" #define MAXTEST 5 REQUEST DBFCDX

Re: [Harbour] Memory loss in DbUseArea() ?

2008-05-05 Thread Juan Gálvez
: [Harbour] Memory loss in DbUseArea() ? On Fri, 02 May 2008, Juan Gálvez wrote: Hi Juan, Attached you can see a xHarbour test ( HB_MEM_BLOCKS doesn't exist in Harbour FM.C ) that shows how memory blocks go increasing when we call DbUseArea() with new file name. Is it a normal behavior ? Yes it

[Harbour] Bug in hbziparch contrib

2008-07-25 Thread Juan Gálvez
Hi all, Viktor, hbziparc.c has a bug at line 134 : bOkAdd = hb_strMatchFile( (const char *) szEntry, (const char *) sRegEx ); it should be : bOkAdd = hb_strMatchFile( (const char *) szEntry, (const char *) szSkleton ); Could someone change it ? Many thanks Juan ___

Re: [Harbour] Bug in hbziparch contrib

2008-07-25 Thread Juan Gálvez
Hi all, BTW I wonder if I should change my app to use hbmzip instead of hbziparch. Any technical reason ? Does hbmzip allow to set / get comments on zip archives ? Does hbmzip allow to zip files with relative path ? Many thanks Juan - Original Message - From: "Juan Gálvez&quo

Re: [Harbour] Bug in hbziparch contrib

2008-07-25 Thread Juan Gálvez
Hi Viktor, I'll try to make some test with hbmzip. Many thanks Juan - Original Message - From: "Szakáts Viktor" <[EMAIL PROTECTED]> To: "Harbour Project Main Developer List." Sent: Friday, July 25, 2008 11:32 AM Subject: Re: [Harbour] Bug in hbziparch contrib Hi Juan, BTW I wonde

Re: [Harbour] 2008-07-25 11:27 UTC+0200 Viktor Szakats (harbour.01syenar hu)

2008-07-25 Thread Juan Gálvez
Many thanks - Original Message - From: "Szakáts Viktor" <[EMAIL PROTECTED]> To: Sent: Friday, July 25, 2008 11:34 AM Subject: [Harbour] 2008-07-25 11:27 UTC+0200 Viktor Szakats (harbour.01syenar hu) 2008-07-25 11:27 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * contrib/hbziparc

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

2008-07-28 Thread Juan Gálvez
Przemek, Many thanks. I'll test it. Best regards Juan - Original Message - From: "Przemyslaw Czerpak" <[EMAIL PROTECTED]> To: Sent: Friday, July 25, 2008 7:20 PM Subject: [Harbour] 2008-07-25 19:19 UTC+0200 Przemyslaw Czerpak(druzus/at/priv.onet.pl) 2008-07-25 19:19 UTC+0200 Prz

[Harbour] hbmzip contrib issue

2008-07-30 Thread Juan Gálvez
Hi all, I'm testing my app with hbmzip instead of hbziparch and I found that unzip functions don't respect the character set used in zipped files. For example If I try to unzip a file *guía.dbf* then I get a file *guia.dbf* (notice the accent). Any solution ? Best regards Juan _

[Harbour] Re: hbmzip contrib issue

2008-07-30 Thread Juan Gálvez
Hi Przemek, hbmzip does not touch file names at all. It stores them as is without any translations. It works perfectly for me in my Linux box. So your problem is probbly different: 1. you need some translations (f.e. ANSI<->OEM conversions) 2. hbmzip uses fopen() (BTW it will be good to replace

[Harbour] hbcompat.ch

2008-07-31 Thread Juan Gálvez
Hi all, I've noticed equivalence for HB_WildMatch() in xHarbour is WildMatch(). Could someone add the translate in hbcompat.ch ? #xtranslate WildMatch([]) => HB_WildMatch() Best regards Juan ___ Harbour mailing list Harbour@harbour-project.org http:

Re: [Harbour] hbcompat.ch

2008-07-31 Thread Juan Gálvez
Hi Viktor WildMatch() is already implemented as a function in xhb.lib. Yes. I know it. BTW, there are a lot of other compatibility functions (h*(), inet*(), hb_checksum(), hb_deserialnext()) implemented as such instead of simple #defines, xhb users would have to decide which is the better fo

Re: [Harbour] hbmzip contrib issue

2008-07-31 Thread Juan Gálvez
ginal Message - From: "Juan Gálvez" <[EMAIL PROTECTED]> To: "Harbour Project Main Developer List." Sent: Wednesday, July 30, 2008 12:15 PM Subject: Re: hbmzip contrib issue Hi Przemek, hbmzip does not touch file names at all. It stores them as is without any trans

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

2008-07-31 Thread Juan Gálvez
Hi Przemek, Viktor, Perhaps these considerations about my test.zip created with hbmzip can help : 1) Winzip shows all files in zip as cripted ("*"). 2) If I set the correct password then Winzip only unzip the first file of the zip. 3) Rest of files are unzipped with no password. Best regard

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

2008-07-31 Thread Juan Gálvez
Please, forget this message and excuse for create confusion. Now, hbmzip library seems to work very well. Many thanks Juan - Original Message - From: "Juan Gálvez" <[EMAIL PROTECTED]> To: "Harbour Project Main Developer List." Sent: Thursday, July 31

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

2008-07-31 Thread Juan Gálvez
Hi Przemek, I'm sorry but I'm also a little bit confused and I think definitively there's something wrong / strange when I try to use a *password* zip file created by hbmzip with an external application (WinZip). My test.zip has about 500 files (dbf, cdx, fpt ...) and they're zipped / unzipp