lazarus-ccr/components/fpspreadsheet/examples/other
2015-03-06 12:12:45 +00:00
..
demo_expression_parser.lpi fpspreadsheet: Modify demos to write compiled units to the common directory "lib" within the examples folder as far as possible. 2014-09-15 21:27:57 +00:00
demo_expression_parser.pas fpspreadsheet: Move type declarations from fpspreadsheet.pas to new unit fpstypes.pas. Update all examples. 2015-01-17 22:57:23 +00:00
demo_formula_func.lpi fpspreadsheet: Modify demos to write compiled units to the common directory "lib" within the examples folder as far as possible. 2014-09-15 21:27:57 +00:00
demo_formula_func.pas fpspreadsheet: Move type declarations from fpspreadsheet.pas to new unit fpstypes.pas. Update all examples. 2015-01-17 22:57:23 +00:00
demo_recursive_calc.lpi fpspreadsheet: Modify demos to write compiled units to the common directory "lib" within the examples folder as far as possible. 2014-09-15 21:27:57 +00:00
demo_recursive_calc.pas fpspreadsheet: Rearrange cell comment architecture: to save memory cell comments are now stored in the worksheet's avltree "Comments". Replace cell's "CalcState" by more general "Flags" which signals that a cell contains a comment (to be extended...) 2015-02-15 11:45:08 +00:00
demo_sorting.lpi fpspreadsheet: Fix compilation error introduced yesterday. Fix multi-key sorting which now passes all tests. 2014-10-23 09:07:20 +00:00
demo_sorting.pas fpspreadsheet: Move type declarations from fpspreadsheet.pas to new unit fpstypes.pas. Update all examples. 2015-01-17 22:57:23 +00:00
demo_virtualmode_read.lpi fpspreadsheet: Modify demos to write compiled units to the common directory "lib" within the examples folder as far as possible. 2014-09-15 21:27:57 +00:00
demo_virtualmode_read.lpr fpspreadsheet: Move type declarations from fpspreadsheet.pas to new unit fpstypes.pas. Update all examples. 2015-01-17 22:57:23 +00:00
demo_virtualmode_write.lpi fpspreadsheet: Modify demos to write compiled units to the common directory "lib" within the examples folder as far as possible. 2014-09-15 21:27:57 +00:00
demo_virtualmode_write.lpr fpspreadsheet: Move type declarations from fpspreadsheet.pas to new unit fpstypes.pas. Update all examples. 2015-01-17 22:57:23 +00:00
demo_write_formatting.lpi fpspreadsheet: Massive reconstruction: remove formatting attributes of TCell record and collect in TCellFormatList. TCell only has index into this list. Introduce record helpers to keep the old syntax. Reduction of memory consumption per cell by 50%. 2015-01-23 21:54:23 +00:00
demo_write_formatting.pas fpspreadsheet: Massive reconstruction: remove formatting attributes of TCell record and collect in TCellFormatList. TCell only has index into this list. Introduce record helpers to keep the old syntax. Reduction of memory consumption per cell by 50%. 2015-01-23 21:54:23 +00:00
demo_write_formula.lpi fpspreadsheet: Modify demos to write compiled units to the common directory "lib" within the examples folder as far as possible. 2014-09-15 21:27:57 +00:00
demo_write_formula.pas fpspreadsheet: Reduce support for shared formulas (too many problems...), only reading from xls and xlsx files supported. 2015-03-06 12:12:45 +00:00
financemath.pas fpspreadsheet: Add interest rate calculation to complete financial functions supported by fpspreadsheet. Extract financial stuff into separate unit "financemath.pas" which will be proposed as a fpc feature request. 2014-07-07 12:04:33 +00:00
readme.txt fpspreadsheet: Implement virtual reading mode for biff8 and biff5 (activated by workbook option boVirtualMode when reading). Add demo_virtualmode_read. Update speed test (factor 2 faster than standard mode, main advantage: no significant memory usage) 2014-07-24 11:51:34 +00:00

This folder contains various demo applications:

- demo_formula_func: shows how a user-provided function can be registered in
  fpspreadsheet for usage in rpn formulas. The example covers some financial
  functions.
  
- demo_recursive_calc: demonstrates recursive calculation of formulas. All
  formulas in this demo depend on the result of the formula in the next cell,
  except for the last cell. When the formula in the first cell is calculated
  recursive calculation of the other cells is requested.
  
- demo_virtualmode_writing: demonstrates how the virtual mode of the workbook
  can be used to create huge spreadsheet files.
  
- demo_virtualmode_reading: demonstrates how the virtual mode of the workbook
  can be used to read huge spreadsheet files. Requires the file written by
  demo_virtualmode_writing.
  
- demo_write_formatting: shows some simple cell formatting

- demo_write_formula: shows some rpn formulas