Exporting to excel from Delphi without having excel

后端 未结 8 852

I\'m looking to export data to excel from Delphi without having to own a copy of excel, is this possible?

N.B. CSV will not do.

相关标签:
8条回答
  • 2020-12-24 04:00

    NativeExcel mentioned earlier is from Nika-Soft. Not free, but it works fine. I am using it now for over one year without problems. http://www.nika-soft.com/nativeexcel2/

    0 讨论(0)
  • 2020-12-24 04:01

    theree is a very simple way to achive this and is by use of a text file. Simply output the data, each field followed by a comma, followed by a carriage return. Save this file with a .CSV extension. This should still work on Excel; I use Open Officw these days

    0 讨论(0)
  • 2020-12-24 04:03

    Try zexmlss. This library can create and load excel 2003 XML format files. Support merged cells, borders, vertical and horizontal alignment and other. Zlib license. Work with delphi 6, 7, 9-14 and lazarus.

    0 讨论(0)
  • 2020-12-24 04:03

    TXLSFile library v.4.0. and XLSExport components

    We've used successfully with D2007, D2009 & D2010

    What is TXLSFile

      TXLSFile is a Delphi library for reading and writing MS Excel 
      XLS files. It is based on direct reading and writing of files, 
      and works without OLE Automation with Microsoft Excel. 
    
      TXLSFile is  distributed  with  XLSExport  components  package. 
      XLSExport is a Delphi components package  for quick data 
      export  into  MS Excel file with  one line  of code.  
    

    http://sm-software.com

    0 讨论(0)
  • 2020-12-24 04:08

    oExport - XLSX/ODS native Delphi import/export library

    • no external dll libraries are required
    • no dependency on Excel or Calc installation (no OLE)
    • full unicode support even for D7, D2007
    • supported cell types: string, number, percent, formula, time, date, datetime
    • cell formatting: cell width+height, horizontal+vertical alignment, wrap text, font, background color, borders
    • col/row span
    • tested and working under Delphi 2007 and XE2 32bit+64bit: should be compatible with all D7 to XE2
    • NEW OFiller: fill DOCX (Word 2007), ODT (OpenOffice Writer), XLSX (Excel 2007), ODS (OpenOffice Calc) templates

    http://www.kluug.at/xlsx-ods-delphi.php

    licensed under a MPL/GPL/LGPL tri-license Version: MPL 1.1/GPL 2.0/LGPL 2.1

    0 讨论(0)
  • 2020-12-24 04:17

    FlexCel, earlier an Opensource now managed by TMS (http://www.tmssoftware.com/site/flexcel.asp) works great.

    You can also check TmxNativeExcel at http://www.torry.net. Comes free and is uses native Biff format. I've not tried this though.

    0 讨论(0)
提交回复
热议问题