Page 1 of 1

fw_dbftoArray alcance

PostPosted: Thu Dec 06, 2018 1:36 am
by J. Ernesto
Buenas noches foro

Un ejemplo de ayuda en la forma correcta de codificar fw_dbftoarray,

cFieldList := "Fecha, Terminal, Valor"

FW_DbfToArray ( cFieldList, bFor, bWhile, nNext, nRec, lRest, aData )

Necesito en el Array solo una fecha determinada

Gracias

Re: fw_dbftoArray alcance

PostPosted: Thu Dec 06, 2018 8:54 am
by nageswaragunupudi
Code: Select all  Expand view

aRows := FW_DbfToArray( "DATE,TERMINAL,VALUE", { || FIELD->DATE = dDate } )
 

where dDate is the specific date required

Re: fw_dbftoArray alcance

PostPosted: Fri Dec 07, 2018 12:44 am
by J. Ernesto
thank you Mr RAO