where I can see a sample for FW_DbfToArray and FW_ArrayToDBF
I Must insert record of two dbf into a array sample aTelefono
I made :
SELECT CL
CL->(DbGoTop())
aTelefono_clienti:=CL-> (FW_DbfToArray(,{ || oProgress:Setpos( ++nProgress ), .t. }))
SELECT PR
PR->(DbGoTop())
aTelefono_Fornitori:=PR-> (FW_DbfToArray(,{ || oProgress:Setpos( ++nProgress ), .t. }))
ACopy( aTelefono_clienti, aTelefono_Fornitori)
but not run ok
Now I have two array but I must create only one and then I must create a dbf from this one
how I can make it ?