FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin para Harbour/xHarbour TXBROWSE:XLFORMULA2BLOCK( 0 )
Posts: 563
Joined: Sun Oct 09, 2005 07:23 PM
TXBROWSE:XLFORMULA2BLOCK( 0 )
Posted: Mon Jul 18, 2022 08:45 AM
Buenos días,
Me está generando el ejecutable un fichero llamado nombredelejecutable.log que contiene una lista de líneas como las siguientes:
Code (fw): Select all Collapse
03-07-22 15:53:36: TXBROWSE:XLFORMULA2BLOCK( 0 )    ctext = ""  
03-07-22 15:53:36: TXBROWSE:XLFORMULA2BLOCK( 0 )    ctext = ""  
03-07-22 15:53:36: TXBROWSE:XLFORMULA2BLOCK( 0 )    ctext = ""  
03-07-22 15:53:36: TXBROWSE:XLFORMULA2BLOCK( 0 )    ctext = ""  
03-07-22 15:53:36: TXBROWSE:XLFORMULA2BLOCK( 0 )    ctext = ""  
03-07-22 15:53:36: TXBROWSE:XLFORMULA2BLOCK( 0 )    ctext = ""  
03-07-22 15:53:45: TXBROWSE:XLFORMULA2BLOCK( 0 )    ctext = ""  
03-07-22 15:53:45: TXBROWSE:XLFORMULA2BLOCK( 0 )    ctext = ""  
03-07-22 15:53:45: TXBROWSE:XLFORMULA2BLOCK( 0 )    ctext = ""  
03-07-22 15:53:45: TXBROWSE:XLFORMULA2BLOCK( 0 )    ctext = ""  
03-07-22 15:53:45: TXBROWSE:XLFORMULA2BLOCK( 0 )    ctext = ""  
03-07-22 15:53:45: TXBROWSE:XLFORMULA2BLOCK( 0 )    ctext = ""


Yo no le he dado instrucciones para que genere ningún log.
¿Sabe alguien a qué puede deberse?. Como o me pone la línea del programa no puedo saber donde se genera, parece que es en algún txbrowse.

Gracias por su colaboración.
Posts: 10733
Joined: Sun Nov 19, 2006 05:22 AM
Re: TXBROWSE:XLFORMULA2BLOCK( 0 )
Posted: Thu Jul 21, 2022 12:36 AM
This log file is created by METHOD xlFormula2Block( cFormula ) of XBrowse, while browsing an Array having one of more cells with text beginning with "=".
This was created for purpose of debugging while developing the feature of using Excel like formulas in Arrays and we forgot the remove this.

We will remove this in the next version.
You can remove this by commenting out or removing this line of code
Code (fw): Select all Collapse
fwlog ctext

in the Method xlFormula2Block
Regards



G. N. Rao.

Hyderabad, India
Posts: 563
Joined: Sun Oct 09, 2005 07:23 PM
Re: TXBROWSE:XLFORMULA2BLOCK( 0 )
Posted: Fri Jul 22, 2022 04:28 AM
Good moorning,
I have solved the issue doing that when compiling:
Code (fw): Select all Collapse
%hdir%\bin\win\msvc64\harbour %1 /n /i%FWDIR%\include;%hdir%\include /p /d__64__ /d__NODEBUG__ %2 %3 > comp.log 2> warnings.log


Using: /d__NODEBUG__

Is that ok?

Continue the discussion