Just now I published the new version for Excel File Viewer: http://www.scalabium.com/xls
Also today I changed the parser for .wb3 files (QuattroPro) and now the multisheet files (workbook) supported too.
Just now I published the new version for Excel File Viewer: http://www.scalabium.com/xls
Also today I changed the parser for .wb3 files (QuattroPro) and now the multisheet files (workbook) supported too.
The Wokbook interface have the boolean Saved property:
if xls.Workbooks.Item[i].Saved then ...
xlsx:
Provider=Microsoft.ACE.OLEDB.12.0;Data Source=c:\myFolder\myExcel2007file.xlsx;Extended Properties=“Excel 12.0 Xml;HDR=YES;IMEX=1″;
xlsb:
Provider=Microsoft.ACE.OLEDB.12.0;Data Source=c:\myFolder\myBinaryExcel2007file.xlsb;Extended Properties=“Excel 12.0;HDR=YES”;
xlsm:
Provider=Microsoft.ACE.OLEDB.12.0;Data Source=c:\myFolder\myExcel2007file.xlsm;Extended Properties=“Excel 12.0 Macro;HDR=YES”;
See also my prev. post about driver download: http://blog.abadev.com/?p=1030