Search found 66 matches: bfor

Return to advanced search

Re: JSON2DBF adapter

... and they 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. ...
by Otto
Sun Feb 04, 2024 8:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: JSON2DBF adapter
Replies: 3
Views: 510

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: 578

Other problem to Ordercreate and descend

...  TAG neworder  FOR !DELETED() MEMORY ADDITIVE   Endif With Tdatabase oDbf local cfor := "!Deleted()" local bFor := "{ || " + cfor + "}" //take the fields cExpression:="" IF !Empty(cField1 ) .and. !Empty(cField2 ) .and. !Empty(cField3) ...
by Silvio.Falconi
Mon Feb 07, 2022 10:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Other problem to Ordercreate and descend
Replies: 3
Views: 258

Array desde varias DBFs usando FW_DbfToArray() ? SOLUCIONADO

... Siempre he utilizado, sin problemas, esta función para crear consultas, Browsers, y reportes, utilizando los dos primeros parámetros: cFieldList y bFor. Hoy se me presenta la necesidad de crear el array extrayendo los datos desde varias tablas DBF, sin resultados. En el siguiente ejemplo, el browser ...
by FranciscoA
Mon May 31, 2021 8:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Array desde varias DBFs usando FW_DbfToArray() ? SOLUCIONADO
Replies: 9
Views: 912

Re: OrdCreate resolved!!

cfor := "!Deleted()"
bFor := "{ || " + cfor + "}"

OrdCondSet(cFor,bFor,,,,, RECNO(),,,, )
by Silvio.Falconi
Thu May 06, 2021 8:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: OrdCreate resolved !!
Replies: 1
Views: 407

OrdCreate resolved !!

... ::aIdx ) ) NEXT the "!deleted()" where I can insert ? I tried with bCode := "{ || " + ::aIdx[ i, 2, k, 1 ] + "}" bFor := "{ || " + "!Deleted()" + "}" OrdCondSet(,bFor,,,,, RECNO(),,,, ) OrdCreate( ::aIdx[ i, 2, k, 3 ], ::aIdx[ i, 2, ...
by Silvio.Falconi
Thu May 06, 2021 7:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: OrdCreate resolved !!
Replies: 1
Views: 407

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( ...
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: 355

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

... por 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 ...
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: 1263

New FTDN January/Enero 2021 (FWH 21.01)

... function 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. ...
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: 1263

Re: nCounter Report not run ok

artu01 wrote:
Try this way


Dear artu01,
we allready resolved

For Groups
oReport:aGroups[ nGroup ]:nCounter

for bfor and others
local nCounter:= 0

...
oReport:bStartRecord := { || nCounter++ }

...
ACTIVATE REPORT oReport ;
....
oReport:Say(1, 'Total customers: '+Tran(nCounter, '@E 999,999'), 1)
by Silvio.Falconi
Sat Oct 10, 2020 5:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: nCounter Report not run ok RESOLVED
Replies: 18
Views: 1296

Re: nCounter Report not run ok

... Mr NagesWarao explain how we must make there is also a sample , it run for bfor condition but when you try to insert a group not run I used his test sample and I insert group command    #include 'fivewin.ch'    #include 'report.ch'  ...
by artu01
Sat Oct 10, 2020 4:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: nCounter Report not run ok RESOLVED
Replies: 18
Views: 1296

Re: nCounter Report not run ok

... makes a mistake) but we have to invent a local variable in our program to count the records, often when we have to print for a certain condition (bFor) It wasn't like that before. I don't remember right now but fw didn't have these problems
by Silvio.Falconi
Fri Oct 09, 2020 6:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: nCounter Report not run ok RESOLVED
Replies: 18
Views: 1296

Re: nCounter Report not run ok

... Mr NagesWarao explain how we must make there is also a sample , it run for bfor condition but when you try to insert a group not run I used his test sample and I insert group command    #include 'fivewin.ch'  ...
by Silvio.Falconi
Thu Oct 08, 2020 6:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: nCounter Report not run ok RESOLVED
Replies: 18
Views: 1296

Re: nCounter Report not run ok

... I made a research, this problem was from before perhaps 2009 For the test, If you think to found a good solution, You must try with alone , with bfor condition, and group condition
by Silvio.Falconi
Thu Oct 08, 2020 5:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: nCounter Report not run ok RESOLVED
Replies: 18
Views: 1296

nCounter Report not run ok RESOLVED

... ; FONT 1 oReport:nCounter is right for each group and the total counter is right If I not use Groups but only easy bfor sample : ACTIVATE REPORT oReport FOR dInicio <= CU->HIREDATE .AND. CU->HIREDATE <= dFinal ; ON END ( oReport:StartLine(), oReport:EndLine(), ...
by Silvio.Falconi
Thu Oct 08, 2020 9:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nCounter Report not run ok RESOLVED
Replies: 18
Views: 1296
Next

Return to advanced search