Search found 47 matches: bwhile

Return to advanced search

Re: JSON2DBF adapter

... are negative, you can present these in HTML in red instead of black. Thus, you have the `do while/enddo` not passing parameters like `[bFor]`, `[bWhile]`, `[nNext]`, `[nRec]`, `[lRest]`. Programming the loop and conditions is more readable, maintainable, and generally more understandable. I would ...
by Otto
Sun Feb 04, 2024 8:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: JSON2DBF adapter
Replies: 3
Views: 500

Re: Pregunta sobre FW_DbftoEXCEL

Lamentablemente mi version debe ser muy vieja porque los dos ultimos paramentros ( [cSaveTo], [lShow ]) no los contempla
La que tengo llega hasta aqui FW_DbfToExcel( [cFieldList], [bFor], [bWhile], [nNext], [nRec], [lRest] )
Igualmente gracias
Abrazo
by El Loco
Wed Apr 05, 2023 1:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta sobre FW_DbftoEXCEL
Replies: 8
Views: 542

library of utility functions of FWH also for mod HARBOUR

... functions are ready: function MH_ArrayToHTML( aData, aHead, lWebPage ) function MH_BinrayRsToHTML( oRs ) function MH_DbfToArray( cFieldList, bFor, bWhile, nNext, nRec, lRest, aData ) function MH_DbfToHTML( cFieldList, lWebPage ) function MH_ImageToBase64( cImage ) function MH_RecordSetToHTML( oRs, ...
by Otto
Mon Apr 19, 2021 8:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: library of utility functions of FWH also for mod HARBOUR
Replies: 0
Views: 352

Re: New FTDN January/Enero 2021 (FWH 21.01)

... otras funciones, por ejemplo: FW_DbfToExcel(), FW_AdoToExcel(), etc. * Mejoras en la función FW_DbfToExcel() FW_DbfToExcel( [cFieldList], [bFor], [bWhile], [nNext], [nRec], [lRest], [cSaveTo], [lShow] ) Fuente: \source\function\dbffunc2.prg: lShow: Nuevo parámetro opcional. Por defecto es .F., ...
by Antonio Linares
Sun Feb 07, 2021 9:15 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2021 (FWH 21.01)
Replies: 1
Views: 1254

New FTDN January/Enero 2021 (FWH 21.01)

... is internally used by other functions eg. FW_DbfToExcel(), FW_AdoToExcel(), etc. * Enhancements to function FW_DbfToExcel( [cFieldList], [bFor], [bWhile], [nNext], [nRec], [lRest], [cSaveTo], [lShow] ) Source: \source\function\dbffunc2.prg: lShow: New optional parameter. Defaults to .f. when cSaveTo ...
by Antonio Linares
Sun Feb 07, 2021 9:10 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2021 (FWH 21.01)
Replies: 1
Views: 1254

Re: Array TO XLS ?

A) If the DBF is already open. (cAlias)->( FW_DbfToExcel( [cFieldList], [bFor], [bWhile], [nNext], [nRec], [lRest], [cSaveToFileName] )  Parameters: 1. cFieldList (Optional): Can be a commadelimited ...
by nageswaragunupudi
Thu Apr 16, 2020 1:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Array TO XLS ?
Replies: 3
Views: 512

Re: Documentation

Marco, FW_DbfToArray ( cFieldList, bFor, bWhile, nNext, nRec, lRest, aData ) cFieldList should be a character string containing comma delimited names of fields. Usage: aData := (cAlias)->( FW_DbfToArray( "First,City,State,Salary" ...
by mgsoft
Wed Mar 25, 2020 7:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Documentation
Replies: 7
Views: 1065

Re: Consulta Sobre Hash y Xbrowse

Antonio, tambien tienes la function FW_DbfToHash( [cFieldList], [bFor], [bWhile], [nNext], [nRec], [lRest], [aData] ) Hola Cristobal Muchas gracias por tu ayuda. Definitivamente decidi aprender a usar HASH, por lo que necesitare mucha ayuda. Quiero mejorar las ...
by remtec
Tue Nov 05, 2019 8:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta Sobre Hash y Xbrowse
Replies: 4
Views: 749

Re: Consulta Sobre Hash y Xbrowse

Antonio, tambien tienes la function
FW_DbfToHash( [cFieldList], [bFor], [bWhile], [nNext], [nRec], [lRest], [aData] )
by cnavarro
Tue Nov 05, 2019 5:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta Sobre Hash y Xbrowse
Replies: 4
Views: 749

Re: New FTDN September/Septiembre 2019 (FWH 19.09)

... están en conflicto con algunos nombres de campo en algunas tablas. Estos métodos ahora son descartados. - Método Eval( bAction, [bFor], [bWhile], [nNext], [nRecord], [lRest] ) Todos los bloques de código son evaluados con Self como parámetro. el puntero al registro es restaurado después ...
by Antonio Linares
Fri Oct 18, 2019 8:38 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2019 (FWH 19.09)
Replies: 1
Views: 2897

New FTDN September/Septiembre 2019 (FWH 19.09)

... for GoTop() and GoBottom() are clashing with some field names in some tables. These methods are now dropped. - Method Eval( bAction, [bFor], [bWhile], [nNext], [nRecord], [lRest] ) All codeblocks are evaluated with Self as parameter. Recordpointer is restored after execution. - After a requery, ...
by Antonio Linares
Sun Oct 13, 2019 11:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2019 (FWH 19.09)
Replies: 1
Views: 2897

Re: Append From

... TDatabase oData := TDatabase():New( , "CUST1", "DBFCDX", .F. ) // exclusive oData:use() // AppendFrom( cFile, aFields, bFor, bWhile, nNext, nRec, lRest ) oData:AppendFrom( "CUST2" ) oData:Close() oData := TDatabase():New( , "CUST1", "DBFCDX", ...
by ukoenig
Tue Sep 03, 2019 7:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Append From- RESOLVED
Replies: 4
Views: 686

Re: How to generate Master/Deltail XML from maridb Rowsets ?

... [nRows], [nStart], [aFields] ) --> Json Array - FW_RecToJson( [acFields], [acNames] ) // for dbf record - FW_DbfToJson( [cFieldList], [bFor], [bWhile], [nNext], [nRec], [lRest], [aData] ) - FW_DbfToHash( [cFieldList], [bFor], [bWhile], [nNext], [nRec], [lRest], [aData] ) - oMariaRs:RecToJson( ...
by cnavarro
Tue Aug 13, 2019 8:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to generate Master/Deltail XML from maridb Rowsets ?
Replies: 10
Views: 1504

Re: New FTDN June/Junio 2019 (FWH 19.06)

... * La función FW_CdxCreate() ahora restaura el orden previo después de la indexación. * Mejoras en FW_DbfToExcel( cFieldList, bFor, bWhile, nNext, nRec, lRest, cSaveTo ) fwh\source\function\dbfunc2.prg - cFieldList también puede ser una matriz de nombres de campo/expresiones. - Es ...
by Antonio Linares
Tue Jul 16, 2019 11:19 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2019 (FWH 19.06)
Replies: 4
Views: 2742

New FTDN June/Junio 2019 (FWH 19.06)

... FWPreviewToPDF(). * function FW_CdxCreate() now restores the previous order after indexing. * Enhancements to FW_DbfToExcel( cFieldList, bFor, bWhile, nNext, nRec, lRest, cSaveTo ) fwh\source\function\dbfunc2.prg - cFieldList can also be an array of field names/expressions. - It is possible ...
by Antonio Linares
Thu Jul 11, 2019 6:14 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2019 (FWH 19.06)
Replies: 4
Views: 2742
Next

Return to advanced search