ExcelDocument workbook = new ExcelDocument();
workbook.easy_LoadXLSBFile("C:\\Samples\\Excel.xlsb");
workbook.easy_WriteXLSFile("C:\\Samples\\Excel.xls");
| |
ExcelDocument workbook = new ExcelDocument();
workbook.easy_LoadXLSBFile("C:\\Samples\\Excel.xlsb");
workbook.easy_WriteXLSFile("C:\\Samples\\Excel.xls");
| |
Dim workbook As New ExcelDocument
workbook.easy_LoadXLSBFile("C:\Samples\Excel.xlsb")
workbook.easy_WriteXLSFile("C:\Samples\Excel.xls")
| |
C++
EasyXLS::IExcelDocumentPtr workbook;
hr = CoCreateInstance(__uuidof(EasyXLS::ExcelDocument),
NULL,
CLSCTX_ALL,
__uuidof(EasyXLS::IExcelDocument),
(void**) &workbook) ;
workbook->easy_LoadXLSBFile("C:\\Samples\\Excel.xlsb");
workbook->easy_WriteXLSFile("C:\\Samples\\Excel.xls");
C++.NET
ExcelDocument ^workbook = gcnew ExcelDocument();
workbook->easy_LoadXLSBFile("C:\\Samples\\Excel.xlsb");
workbook->easy_WriteXLSFile("C:\\Samples\\Excel.xls");
| |
ExcelDocument workbook = new ExcelDocument();
workbook.easy_LoadXLSBFile("C:\\Samples\\Excel.xlsb");
workbook.easy_WriteXLSFile("C:\\Samples\\Excel.xls");
| |
COM+:
$workbook = new COM("EasyXLS.ExcelDocument");
$workbook->easy_LoadXLSBFile("C:\Samples\Excel.xlsb");
$workbook->easy_WriteXLSFile("C:\Samples\Excel.xls");
Java:
$workbook = new java("EasyXLS.ExcelDocument");
$workbook->easy_LoadXLSBFile("C:\Samples\Excel.xlsb");
$workbook->easy_WriteXLSFile("C:\Samples\Excel.xls");
| |
set workbook = Server.CreateObject("EasyXLS.ExcelDocument")
workbook.easy_LoadXLSBFile("C:\Samples\Excel.xlsb")
workbook.easy_WriteXLSFile("C:\Samples\Excel.xls")
| |
Set workbook = CreateObject("EasyXLS.ExcelDocument")
workbook.easy_LoadXLSBFile("C:\Samples\Excel.xlsb")
workbook.easy_WriteXLSFile("C:\Samples\Excel.xls")
| |
set workbook = CreateObject("EasyXLS.ExcelDocument")
workbook.easy_LoadXLSBFile("C:\Samples\Excel.xlsb")
workbook.easy_WriteXLSFile("C:\Samples\Excel.xls")
| |
<cfobject type="java" class="EasyXLS.ExcelDocument" name="workbook" action="CREATE">
<cfset ret = workbook.easy_LoadXLSBFile("C:\Samples\Excel.xlsb")>
<cfset ret = workbook.easy_WriteXLSFile("C:\Samples\Excel.xls")>
| |
.NET:
workbook = ExcelDocument()
workbook.easy_LoadXLSBFile("C:\\Samples\\Excel.xlsb")
workbook.easy_WriteXLSFile("C:\\Samples\\Excel.xls")
Java:
workbook = gateway.jvm.ExcelDocument()
workbook.easy_LoadXLSBFile("C:\\Samples\\Excel.xlsb")
workbook.easy_WriteXLSFile("C:\\Samples\\Excel.xls")
| |