Xbrowse can handle many data and in my case, I use Xbrowse command to show Json data.
hb_JsonDecode( hJson, @hDatos ) // -> Hash
xbrowser(hDatos) Title "hDatos"
This will give me a xbrowse with title and data...
option 1 :
Trying to export to dbf is failing in my code. (And can cause issues with fieldnames that are only 10 char long in dbf)
xbrowser hDatos setup ( obrw:autofit(), oBrw:bRClicked := { |r,c,f,o| o:ToDbf( "download.dbf", nil, nil, .t. ) } )
Option 2 :
How can I process this Xbrowse in a Do/While loop ? Wich setup is needed to call my function for this do while ?