... Clase TDataRow:
* TDataRow class: Los campos de imagen se muestran como imágenes, aunque todavía no se pueden modificar ni guardar.
* XBROWSE:
- RTE durante la navegación de la consulta PostGre debido a un error en el método SetPostGreCol() corregido.
- Si el conjunto de registros está cerrado ...
Search found 59 matches: rte
Searched query: rte
- Sat Jul 29, 2023 9:16 pm
- Forum: WhatsNew / Novedades
- Topic: New FTDN July/Julio (FWH 23.07)
- Replies: 7
- Views: 6394
- Thu Jul 27, 2023 6:13 pm
- Forum: WhatsNew / Novedades
- Topic: New FTDN July/Julio (FWH 23.07)
- Replies: 7
- Views: 6394
New FTDN July/Julio (FWH 23.07)
... can be a codeblock also.
Default: Ascending sort
Param.2 lRecurse: Default .f. for backward compatibility
If set to .T. all subtrees are also sorted
Param.3 nCol: Default 0: Sorts on nCol of Cargo Array
* TreeItem: oItem[ n ] returns oItem:Cargo[ n ] if oItem:Cargo
is an array and n is ...
Default: Ascending sort
Param.2 lRecurse: Default .f. for backward compatibility
If set to .T. all subtrees are also sorted
Param.3 nCol: Default 0: Sorts on nCol of Cargo Array
* TreeItem: oItem[ n ] returns oItem:Cargo[ n ] if oItem:Cargo
is an array and n is ...
- Mon Sep 05, 2022 1:47 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel OLE RTE when compiled with Harbour
- Replies: 15
- Views: 1703
Re: Excel OLE RTE when compiled with Harbour
Hi Rao,
It works!
For the life of me I would have never guessed that solution.
Thank you very much!
It works!

For the life of me I would have never guessed that solution.
Thank you very much!
- Tue Aug 30, 2022 9:56 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel OLE RTE when compiled with Harbour
- Replies: 15
- Views: 1703
Re: Excel OLE RTE when compiled with Harbour
I remember having experienced the same problem, when I was writing the METHOD ToExcel() of XBrowse.
Please see my notes towards the end of ToExcel() method in XBrowse.
#ifndef __XHARBOUR__ else // SysRefresh() // // This requires explanation. // With xHarbour there is no problem. Problem is ...
Please see my notes towards the end of ToExcel() method in XBrowse.
#ifndef __XHARBOUR__ else // SysRefresh() // // This requires explanation. // With xHarbour there is no problem. Problem is ...
- Tue Aug 30, 2022 7:52 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel OLE RTE when compiled with Harbour
- Replies: 15
- Views: 1703
- Tue Aug 30, 2022 3:28 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel OLE RTE when compiled with Harbour
- Replies: 15
- Views: 1703
Re: Excel OLE RTE when compiled with Harbour
It's just a crude report written in class form as I try to avoid using public,private variable as much as possible 
Irregardless, I've emailed it to you.
Thank you

Irregardless, I've emailed it to you.
Thank you
- Tue Aug 30, 2022 3:03 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel OLE RTE when compiled with Harbour
- Replies: 15
- Views: 1703
Re: Excel OLE RTE when compiled with Harbour
Nice.
Do you mind sharing your class with me?
Do you mind sharing your class with me?
- Tue Aug 30, 2022 2:35 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel OLE RTE when compiled with Harbour
- Replies: 15
- Views: 1703
Re: Excel OLE RTE when compiled with Harbour
Hi Rao,
StatPrnXls() is a class in my program that generates a report directly in Excel using OLE.
The last line in StatPrnCls():activate() is return .t. hence my bewilderment when lRetVal contains an array
StatPrnXls() is a class in my program that generates a report directly in Excel using OLE.
The last line in StatPrnCls():activate() is return .t. hence my bewilderment when lRetVal contains an array
- Mon Aug 29, 2022 10:05 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel OLE RTE when compiled with Harbour
- Replies: 15
- Views: 1703
Re: Excel OLE RTE when compiled with Harbour
May I know what is this "StatPrnXls()" ?
- Mon Aug 29, 2022 10:05 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel OLE RTE when compiled with Harbour
- Replies: 15
- Views: 1703
Re: Excel OLE RTE when compiled with Harbour
May I know what is this "StatPrnXls()" ?
- Thu Aug 25, 2022 1:56 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel OLE RTE when compiled with Harbour
- Replies: 15
- Views: 1703
Re: Excel OLE RTE when compiled with Harbour
Whether StatPrnXls():activate() returns .t. or .f. lRetVal always ends up with {0, 5813120}
I can't wrap my mind on what's happening. Called class returns a logical value yet lRetVal ends up with an array
I can't wrap my mind on what's happening. Called class returns a logical value yet lRetVal ends up with an array
- Wed Aug 24, 2022 6:37 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel OLE RTE when compiled with Harbour
- Replies: 15
- Views: 1703
Re: Excel OLE RTE when compiled with Harbour
You could try this:
instead of
return lRetVal
use
return lRetVal[ 2 ] != 0
instead of
return lRetVal
use
return lRetVal[ 2 ] != 0
- Wed Aug 24, 2022 2:02 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel OLE RTE when compiled with Harbour
- Replies: 15
- Views: 1703
Re: Excel OLE RTE when compiled with Harbour
Another error I found after compiling with Harbour. Instead of a logical value, lRetVal ends up with an array {0, 5813120}
lRetVal := StatPrnXls():activate(cTitle, cFrom, cTo, dCOD, lPrnZero) return lRetVal
I don't even know where to begin ...
lRetVal := StatPrnXls():activate(cTitle, cFrom, cTo, dCOD, lPrnZero) return lRetVal
I don't even know where to begin ...
- Tue Aug 23, 2022 8:28 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel OLE RTE when compiled with Harbour
- Replies: 15
- Views: 1703
Re: Excel OLE RTE when compiled with Harbour
Thanks Cristobal! That was it 

- Tue Aug 23, 2022 7:50 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel OLE RTE when compiled with Harbour
- Replies: 15
- Views: 1703
Re: Excel OLE RTE when compiled with Harbour
Try with
Code: Select all | Expand
::oSheet := ::oExcel:ActiveSheet
::oSheet:name := "A & T ELEC"