lazarus-ccr/components/fpspreadsheet
2024-09-27 18:06:02 +00:00
..
docs FPSpreadsheet: Improved presentation of date axis in chart. Testing to build documentation. 2024-09-18 17:57:40 +00:00
examples fpspreadsheet: Handle differences in gradient appearence between xlsx and ods. More consistent order of arguments in the AddXXXGradient methods. 2024-09-26 16:07:12 +00:00
images FPSpreadsheet: New palette icons, by Roland Hahn. 2024-09-13 21:37:34 +00:00
languages gedit 2024-08-11 06:25:24 +00:00
reference fpspreadsheet: Remove BIFFExplorer (has been moved to application) 2016-02-21 11:05:39 +00:00
resource FPSpreadsheet: New palette icons, by Roland Hahn. 2024-09-13 21:37:34 +00:00
source FPspreadsheet: Fix compilation with Laz 2.0.x/FPC 3.0.x 2024-09-27 18:06:02 +00:00
unit-tests fpspreadsheet: Add unit tests for defined names. 2024-08-01 13:11:19 +00:00
fps_all.lpg fpspreadsheet: Add project group (fps_all) with all fpspreadsheet packages for easier compilation and installation. 2023-02-23 11:46:01 +00:00
install.txt fpspreadsheet: Update readme files 2023-10-07 22:10:27 +00:00
laz_fpspreadsheet_crypto.lpk fpspreadsheet: Increase version number to 1.17 2023-10-15 17:47:58 +00:00
laz_fpspreadsheet_dataset.lpk fpspreadsheet: Increase version number to 1.17 2023-10-15 17:47:58 +00:00
laz_fpspreadsheet_visual_dsgn.lpk fpspreadsheet: Increase version number to 1.17 2023-10-15 17:47:58 +00:00
laz_fpspreadsheet_visual.lpk fpspreadsheet: Add the ohlcseries of Laz/main as TStockseries in unit fpsstockseries for supporting the HLC series of Excel and Calc. 2023-12-07 22:53:48 +00:00
laz_fpspreadsheet.lpk FpSpreadsheet: Add ex-meta files for integration of some sample projects into the Lazarus examples windows. 2024-01-24 19:22:14 +00:00
laz_fpspreadsheetexport_visual.lpk fpspreadsheet: Increase version number to 1.17 2023-10-15 17:47:58 +00:00
README.txt fpspreadsheet: Update readme files 2023-10-07 22:10:27 +00:00

fpspreadsheet
=============
The fpSpreadsheet library offers a convenient way to generate and read 
spreadsheet documents in various formats:
- Excel 2.x .xls
- Excel 3.0 and 4.0 .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 user can register his own readers/writers for other formats. An example
  is shown in the "spready" application for the .slk format.
  ("spready" is in the applications folder of CCR).

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
- select laz_fpspreadsheet_visual.lpk from the fpspreadsheet installation folder
- click Compile
- select laz_fpspreadsheet_visual_dsgn.lpk from the fpspreadsheet installation folder 
- 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"
- Then click Use > Install and follow the prompts to rebuild Lazarus with the new package.
Drop export component on your form as usual.

A fourth package allows to access spreadsheet files with database technology:
- Package/Open Package File
- Select laz_fpspreadsheet_dataset.lpk from the folder "source"
- Click Use, Install and follow the prompts to rebuild Lazarus with the new package.
Drop dataset component on your form as usual.

If you want to access encrypted spreadsheet files the following package must be made known 
to the IDE:
- Package/Open Package File
- Select laz_fpspreadsheet_crypto.lpk
- Click Compile


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