Export XLSB Files

   Concept:

ActiveXLS allows the user to export data in XLSB format (Office 2007 binary file format), using the following methods:

    * ExcelDocument.esd_WriteXLSBFile
   This method allows saving an XLSB document in binary file format.
   Available for: Professional, Writer

    * ExcelDocument.esd_WriteXLSBFile_FromDataSet
   This method allows importing data from a dataset/resultset and save data in XLSB binary format.
   Available for: Professional, Writer, Express Writer

    * ExcelDocument.esd_WriteXLSBFile_FromList
   This method allows importing data from a list of values and save data in XLSB binary format.
   Available for: Professional, Writer, Express Writer


   Concept in action:

If you want to generate an Excel 2007 document, consider the code sample and the screen shot below:

   CODE   
  
  
  
  
  
  
  
  
  
  
  
 

   The screen shot below represents the Excel document generated by the code sample above. The file has two worksheets (First Tab and Second Tab). The user set the values and the data type of the cells for the first worksheet.



   
Top