| Author | Topic: Component/Lib to read an Excel File ? |
---|
| Osvaldo Luis Aoki | Component/Lib to read an Excel File ?
on Thu, 07 May 2015 20:36:46 +0200Hi,
Any people knows a Library to read XLS File directly ?
Today I use activeX but it requires customer to have Office installed..
Any people knows who has this component ?
Or a example using ODBC to do this ?
Thanks,
Osvaldo |
| CESAR CALVO | Re: Component/Lib to read an Excel File ?
on Fri, 08 May 2015 15:57:50 +0200HI,
SqlExpress of Boris Borzic works fine but if you need to create xlsx file,
this can be done with ActiveX and then try the sheet with SqlExpress.
This is thw url where you can found it : http://www.sqlexpress.net/menu.htm
Regards.
César.
"Osvaldo Luis Aoki" escribió en el mensaje de
noticias:572944a3$63bb18bb$2304b@news.alaska-software.com...
Hi,
Any people knows a Library to read XLS File directly ?
Today I use activeX but it requires customer to have Office installed..
Any people knows who has this component ?
Or a example using ODBC to do this ?
Thanks,
Osvaldo |
| Carlos | Re: Component/Lib to read an Excel File ?
on Sun, 10 May 2015 15:52:25 +0100 |
| Osvaldo Luis Aoki | Re: Component/Lib to read an Excel File ?
on Mon, 11 May 2015 15:21:33 +0200Hi,
I just find a good Lib to read and write Excel file.
Look for site: www.libxl.com
I already test it, and works fine !
I recomend it.
Thanks,
Osvaldo
Osvaldo Luis Aoki wrote in message
news:572944a3$63bb18bb$2304b@news.alaska-software.com...
>Hi,
>
> Any people knows a Library to read XLS File directly ?
>
> Today I use activeX but it requires customer to have Office
installed..
>
> Any people knows who has this component ?
>
> Or a example using ODBC to do this ?
>
> Thanks,
> Osvaldo |
| Hubert Brandel | Re: Component/Lib to read an Excel File ?
on Tue, 12 May 2015 10:07:36 +0200Am 11.05.2015 um 15:21 schrieb "Osvaldo Luis Aoki":
> Hi,
>
> I just find a good Lib to read and write Excel file.
>
> Look for site: www.libxl.com
>
> I already test it, and works fine !
>
> I recomend it.
I have written a class to use this dll,
you can find it on pablos site (it needs ot4xb)...
regards
Hubert |
| Hubert Brandel | Re: Component/Lib to read an Excel File ?
on Tue, 12 May 2015 10:18:37 +0200its there:
http://www.xbwin.com/forum.html
=> xfree.resources
=> HBLibXL and HBPrintPDF - new versions released
Version 3.5.4 (2014-01-10): added xltx and xltm file support
Version 3.6.0 (2014-07-14): added a possibility to create xltx and xlsm
files
my class does not support this by now, i will add this if needed |
| Peter Alderliesten | Re: Component/Lib to read an Excel File ?
on Fri, 15 May 2015 10:04:31 +0200Osvaldo,
> I just find a good Lib to read and write Excel file.
>
> Look for site: www.libxl.com
>
> I already test it, and works fine !
Could you post some code you used to test this lib?
Thanks,
Peter |
| Hubert Brandel | Re: Component/Lib to read an Excel File ?
on Fri, 15 May 2015 10:20:43 +0200 |
| Peter Alderliesten | Re: Component/Lib to read an Excel File ?
on Sat, 16 May 2015 16:14:33 +0200 |
| Osvaldo Luis Aoki | Re: Component/Lib to read an Excel File ?
on Sat, 16 May 2015 03:34:12 +0200Hi Peter,
It is easy to use, because it already have integration with ALASKA
XBASE, you only need to link Pablo library Ot4xb.lib.
Look for some commands below:
oBook := xlCreateBook( clName, clKey )
lOK:= oBook:BookLoad( cFile )
oBook:BooksetActiveSheet( nSheet )
xVal:= oSheet:SheetReadStr( nLin, nCol )
oBook:Bookrelease()
Peter Alderliesten wrote in message
news:1bun90ziuyrj7.yongt295rlau.dlg@40tude.net...
>Osvaldo,
>
>> I just find a good Lib to read and write Excel file.
>>
>> Look for site: www.libxl.com
>>
>> I already test it, and works fine !
>
>Could you post some code you used to test this lib?
>
>Thanks,
>Peter |