// Create an instance of the class that imports Excel files
ExcelDocument workbook = new ExcelDocument();
// Import XML Spreadsheet Excel file
workbook.easy_LoadXMLSpreadsheetFile("C:\\Samples\\XML Spreadsheet.xml");
' Create an instance of the class that imports Excel filesDim workbook As New ExcelDocument
' Import XML Spreadsheet Excel file
workbook.easy_LoadXMLSpreadsheetFile("C:\Samples\XML Spreadsheet.xml")
C++// Create an instance of the class that imports Excel files
EasyXLS::IExcelDocumentPtr workbook;
hr = CoCreateInstance(__uuidof(EasyXLS::ExcelDocument),
NULL,
CLSCTX_ALL,
__uuidof(EasyXLS::IExcelDocument),
(void**) &workbook) ;
// Import XML Spreadsheet Excel file
workbook->easy_LoadXMLSpreadsheetFile_2("C:\\Samples\\XML Spreadsheet.xml")
Click here to see Continuous Code ListingC++.NET// Create an instance of the class that imports Excel files
ExcelDocument ^workbook = gcnew ExcelDocument();
// Import XML Spreadsheet Excel file
workbook->easy_LoadXMLSpreadsheetFile("C:\\Samples\\XML Spreadsheet.xml")
Click here to see Continuous Code Listing
// Create an instance of the class that imports Excel files
ExcelDocument workbook = new ExcelDocument();
// Import XML Spreadsheet Excel file
workbook.easy_LoadXMLSpreadsheetFile("C:\\Samples\\XML Spreadsheet.xml");
.NET:// Create an instance of the class that imports Excel files
$workbook = new COM("EasyXLS.ExcelDocument");
// Import XML Spreadsheet Excel file
$workbook->easy_LoadXMLSpreadsheetFile_2("C:\\Samples\\XML Spreadsheet.xml")
Click here to see Continuous Code ListingJava:// Create an instance of the class that imports Excel files
$workbook = new java("EasyXLS.ExcelDocument");
// Import XML Spreadsheet Excel file
$workbook->easy_LoadXMLSpreadsheetFile("C:\\Samples\\XML Spreadsheet.xml")
Click here to see Continuous Code Listing
' Create an instance of the class that imports Excel filesset workbook = Server.CreateObject("EasyXLS.ExcelDocument")
' Import XML Spreadsheet Excel file
workbook.easy_LoadXMLSpreadsheetFile_2("C:\Samples\XML Spreadsheet.xml")
' Create an instance of the class that imports Excel filesSet workbook = CreateObject("EasyXLS.ExcelDocument")
' Import XML Spreadsheet Excel file
workbook.easy_LoadXMLSpreadsheetFile_2("C:\Samples\XML Spreadsheet.xml")
' Create an instance of the class that imports Excel filesset workbook = CreateObject("EasyXLS.ExcelDocument")
' Import XML Spreadsheet Excel file
workbook.easy_LoadXMLSpreadsheetFile_2("C:\Samples\XML Spreadsheet.xml")
<!-- Create an instance of the class that imports Excel files --><cfobject type="java"class="EasyXLS.ExcelDocument"name="workbook"action="CREATE"><!-- Import XML Spreadsheet Excel file --><cfset ret = workbook.easy_LoadXMLSpreadsheetFile(C:\Samples\XML Spreadsheet.xml")>
.NET:# Create an instance of the class used to import/export Excel files
workbook = ExcelDocument()
# Import XML Spreadsheet file
workbook.easy_LoadXMLSpreadsheetFile("C:\\Samples\\XML Spreadsheet.xml")
Click here to see Continuous Code ListingJava:# Create an instance of the class used to import/export Excel files
workbook = gateway.jvm.ExcelDocument()
# Import XML Spreadsheet file
workbook.easy_LoadXMLSpreadsheetFile("C:\\Samples\\XML Spreadsheet.xml")
Click here to see Continuous Code Listing
Read XML Spreadsheet file into DataTable in C# and VB.NET
EasyXLS library can be used to import XML Spreadsheet file into DataTable. The DataTable can be the used as data source of a GridView, DataGridView, DataGrid or for any other purposes.
Read XML Spreadsheet file into GridView in C# and VB.NET from ASP.NET
EasyXLS library can be used to import XML Spreadsheet data into GridView from ASP.NET web applications.
The data from the XML Spreadsheet file file can be read using ExcelDocument.easy_ReadXMLSpreadsheet_AsDataSet method and then the DataTable for the GridView can be obtained from the imported DataSet.
Read XML Spreadsheet file into DataGridView in C# and VB.NET
EasyXLS library can be used to import XML Spreadsheet data into DataGridView from windows applications and windows forms.
The data from the XML Spreadsheet file can be read using ExcelDocument.easy_ReadXMLSpreadsheet_AsDataSet method and then the DataTable for the DataGridView can be obtained from the imported DataSet.
Read XML Spreadsheet file into DataGrid in C# and VB.NET
EasyXLS library can be used to import XML Spreadsheet data into DataGrid from windows applications and windows forms.
The data from the XML Spreadsheet file can be read using ExcelDocument.easy_ReadXMLSpreadsheet_AsDataSet method and then the DataTable for the DataGrid can be obtained from the imported DataSet.