lazarus-ccr/components/fpspreadsheet
2018-06-04 19:36:21 +00:00
..
docs fpspreadsheet: Update chm help files for v1.8 2017-03-02 12:39:07 +00:00
examples fpspreadsheet: Redo storage of formulas: formulas now are stored in a separate tree independent of the cells tree. The field FormulaValue of TCell record was removed. All unit tests passed. Demos updated (issues of speedtest due to SST in BIFF8 found - not related). 2018-05-30 22:15:07 +00:00
images fpspreadsheet: New HiDPI palette icons (by Roland Hahn) for TFPSExport and TsWork(book|sheet)ChartSource 2018-01-01 17:37:15 +00:00
languages fpspreadsheet: Fix cell ranges in ods formula parser. --> 3d single-sheet references (Sheet1!A1;B4) working for all ODS now for both reading and writing. PageLayout broken for BIFF5 at the moment. 2018-05-13 23:09:18 +00:00
reference fpspreadsheet: Remove BIFFExplorer (has been moved to application) 2016-02-21 11:05:39 +00:00
source fpspreadsheet: Move package files from source folder to root of installation. 2018-06-04 19:36:21 +00:00
tests fpspreadsheet: Fix crash when referenced worksheet does not exist. 2018-06-03 11:07:42 +00:00
install.txt fpspreadsheet: Move package files from source folder to root of installation. 2018-06-04 19:36:21 +00:00
laz_fpspreadsheet_crypto.lpk fpspreadsheet: Move package files from source folder to root of installation. 2018-06-04 19:36:21 +00:00
laz_fpspreadsheet_visual.lpk fpspreadsheet: Move package files from source folder to root of installation. 2018-06-04 19:36:21 +00:00
laz_fpspreadsheet.lpk fpspreadsheet: Move package files from source folder to root of installation. 2018-06-04 19:36:21 +00:00
laz_fpspreadsheetexport_visual.lpk fpspreadsheet: Move package files from source folder to root of installation. 2018-06-04 19:36:21 +00:00
README.txt fpspreadsheet: Add README.txt 2016-10-22 21:41:47 +00:00

fpspreadsheet
=============
The fpSpreadsheet library offers a convenient way to generate and read 
spreadsheet documents in various formats:
- Excel 2.x .xls
- Excel 5.0/Excel 95 .xls
- Excel 8.0 (Excel 97-XP) .xls
- Excel XML (Excel 2003) .xml
- Microsoft OOXML .xlsx
- LibreOffice/OpenOffice OpenDocument .ods
- Comma-separated text files 
- html files
- wikimedia wikitable formats

The library is written in a very flexible manner, capable of being extended to 
support any number of formats easily.

Installation
============
If you only need non-GUI components: in Lazarus: 
- Package/Open Package File 
- select laz_fpspreadsheet.lpk from folder "source"
- click Compile. 
Now the package is known to Lazarus (and should e.g. show up in Package/Package Links). 
Add it to your project like you add other packages.

If you also want GUI components (grid and chart): 
- Package/Open Package File
- seleect laz_fpspreadsheet_visual.lpk from the folder "source"
- click Compile
- then click Use, Install and follow the prompts to rebuild Lazarus with the new package.
Drop needed grid/chart components on your forms as usual

A third package contains code for export databases to spreadsheet files
- Package/Open Package File
- Select laz_fpspreadsheetexport_visual.lpk from the folder "source"
- Click Compile
- Then click Use, Install and follow the prompts to rebuild Lazarus with the new package.
Drop export component on your form as usual.
		
License
=======
LGPL with static linking exception. This is the same license as is used in the Lazarus Component Library. 

More information
================
- FPSpreadsheet documentation in fpspreadsheet.chm (open e.g. with Lazarus lhelp)
- The fpspreadsheet article on the Lazarus wiki with lots of example:
  http://wiki.lazarus.freepascal.org/FPSpreadsheet
- The demo programs in the examples folder