Page 2 of 2

Re: Desactivar Botones en xBrowse

PostPosted: Fri Aug 18, 2023 12:52 pm
by nageswaragunupudi
A few days ago I asked here how I could transfer the results of a MySql query to Excel.


If only purpose is to export to Excel, we can do it directly without the round about method of using XBrowser.
Using FWH library
Code: Select all  Expand view
oRs := oCn:Query( cSql )
oRs:ToExcel()
oRs:Close()

Re: Desactivar Botones en xBrowse

PostPosted: Sat Aug 19, 2023 1:26 pm
by JoseAlvarez
Thanks a Lot Mr. Rao .

take care.